Skip to content

Commit 02c5b4b

Browse files
SNOW-1926861: Run lob tests with 128 MB limit
1 parent 580e7e8 commit 02c5b4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bindings_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ const (
5454
)
5555

5656
var (
57-
// maxLOBSize = 128 * 1024 * 1024 // new max LOB size
58-
maxLOBSize = 16 * 1024 * 1024 // current max LOB size
57+
maxLOBSize = 128 * 1024 * 1024 // new max LOB size
58+
// maxLOBSize = 16 * 1024 * 1024 // current max LOB size
5959
largeSize = maxLOBSize / 2
6060
mediumSize = largeSize / 2
6161
)
@@ -1281,7 +1281,7 @@ func testLOBRetrieval(t *testing.T, useArrowFormat bool) {
12811281
}
12821282

12831283
func TestMaxLobSize(t *testing.T) {
1284-
skipMaxLobSizeTestOnGithubActions(t)
1284+
// skipMaxLobSizeTestOnGithubActions(t)
12851285
runDBTest(t, func(dbt *DBTest) {
12861286
dbt.mustExec(enableFeatureMaxLOBSize)
12871287
defer dbt.mustExec(unsetLargeVarcharAndBinary)

0 commit comments

Comments
 (0)