File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ function generateRandomString(sizeInBytes) {
16
16
return buffer . toString ( 'hex' ) . slice ( 0 , sizeInBytes ) ;
17
17
}
18
18
19
- if ( process . env . RUN_MANUAL_TESTS_ONLY === 'true' ) {
20
- describe . only ( 'Max LOB test' , function ( ) {
19
+ describe ( 'Max LOB test' , function ( ) {
21
20
let connection ;
22
21
// This size cannot be tested on our env. The snowflake team should test internally.
23
22
const MAX_LOB_SIZE = 128 * 1024 * 1024 ;
@@ -27,7 +26,7 @@ if (process.env.RUN_MANUAL_TESTS_ONLY === 'true'){
27
26
const SMALL_SIZE = 16 ;
28
27
29
28
const tableName = 'my_lob_test' ;
30
- const createTable = `create or replace table ${ tableName } (c1 varchar, c2 varchar, c3 int)` ;
29
+ const createTable = `create or replace table ${ tableName } (c1 varchar(134217728) , c2 varchar(134217728) , c3 int)` ;
31
30
const allowLobExternalScan = 'alter session set ALLOW_LARGE_LOBS_IN_EXTERNAL_SCAN = true' ;
32
31
const stageName = `@${ DATABASE_NAME } .${ SCHEMA_NAME } .%${ tableName } ` ;
33
32
const copyIntoTable = `copy into ${ tableName } ` ;
@@ -341,5 +340,4 @@ if (process.env.RUN_MANUAL_TESTS_ONLY === 'true'){
341
340
} ) ;
342
341
} ) ;
343
342
} ) ;
344
- }
345
343
You can’t perform that action at this time.
0 commit comments