Skip to content

Commit

Permalink
SNOW-1926861: Run lob tests with 128 MB limit
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dprzybysz committed Feb 13, 2025
1 parent fdebcea commit 5034fb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class LobSizeLatestIT extends BaseJDBCTest {
private static final Map<Integer, String> LobSizeStringValues = new HashMap<>();

// Max LOB size is testable from version 3.15.0 and above.
private static int maxLobSize = 16 * 1024 * 1024; // default value
private static int maxLobSize = 128 * 1024 * 1024; // default value
private static int largeLobSize = maxLobSize / 2;
private static int mediumLobSize = largeLobSize / 2;
private static int smallLobSize = 16;
Expand Down

0 comments on commit 5034fb5

Please sign in to comment.