Skip to content

Commit ee70d35

Browse files
SNOW-1926861: Run lob tests with 128 MB limit
1 parent a2af702 commit ee70d35

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/java/net/snowflake/client/jdbc/LobSizeLatestIT.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class LobSizeLatestIT extends BaseJDBCTest {
4343
private static final Map<Integer, String> LobSizeStringValues = new HashMap<>();
4444

4545
// Max LOB size is testable from version 3.15.0 and above.
46-
private static int maxLobSize = 16 * 1024 * 1024; // default value
46+
private static int maxLobSize = 128 * 1024 * 1024; // default value
4747
private static int largeLobSize = maxLobSize / 2;
4848
private static int mediumLobSize = largeLobSize / 2;
4949
private static int smallLobSize = 16;
@@ -103,7 +103,9 @@ private void createTable(int lobSize, Statement stmt) throws SQLException {
103103
String createTableQuery =
104104
"create or replace table "
105105
+ tableName
106-
+ " (c1 varchar, c2 varchar("
106+
+ " (c1 varchar("
107+
+ lobSize
108+
+ "), c2 varchar("
107109
+ lobSize
108110
+ "), c3 varchar)";
109111
stmt.execute(createTableQuery);

0 commit comments

Comments
 (0)