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
22
22
{
23
23
private readonly ResultFormat _resultFormat ;
24
24
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
27
27
private const int LargeSize = ( MaxLobSize / 2 ) ;
28
28
private const int MediumSize = ( LargeSize / 2 ) ;
29
29
private const int OriginSize = ( MediumSize / 2 ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ public class SFMaxLobSizeSwitchIT : SFBaseTest
10
10
private const string SqlSelectLargeString = "select randstr(20000000, random()) as large_str" ;
11
11
12
12
[ Test ]
13
- [ Ignore ( "TODO: Enable when Max LOB size is available on the automated tests environment" ) ]
14
13
public void TestIncreaseMaxLobSizeParameterSwitchSelect ( )
15
14
{
16
15
using ( var conn = new SnowflakeDbConnection ( ConnectionString + "poolingEnabled=false" ) )
You can’t perform that action at this time.
0 commit comments