File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Snowflake.Data.Tests/IntegrationTests Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ class MaxLobSizeIT : SFBaseTest
2222 {
2323 private readonly ResultFormat _resultFormat ;
2424
25- // private const int MaxLobSize = (128 * 1024 * 1024); // new max LOB size
26- private const int MaxLobSize = ( 16 * 1024 * 1024 ) ; // current max LOB size
25+ private const int MaxLobSize = ( 128 * 1024 * 1024 ) ; // new max LOB size
26+ // private const int MaxLobSize = (16 * 1024 * 1024); // current max LOB size
2727 private const int LargeSize = ( MaxLobSize / 2 ) ;
2828 private const int MediumSize = ( LargeSize / 2 ) ;
2929 private const int OriginSize = ( MediumSize / 2 ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ public class SFMaxLobSizeSwitchIT : SFBaseTest
1010 private const string SqlSelectLargeString = "select randstr(20000000, random()) as large_str" ;
1111
1212 [ Test ]
13- [ Ignore ( "TODO: Enable when Max LOB size is available on the automated tests environment" ) ]
1413 public void TestIncreaseMaxLobSizeParameterSwitchSelect ( )
1514 {
1615 using ( var conn = new SnowflakeDbConnection ( ConnectionString + "poolingEnabled=false" ) )
You can’t perform that action at this time.
0 commit comments