Skip to content

Commit

Permalink
SNOW-969717: Set max lob size to current max value
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-lf committed Jan 30, 2024
1 parent c2a6191 commit b5ca20c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class MaxLobSizeIT : SFBaseTest
{
private readonly ResultFormat _resultFormat;

private const int MaxLobSize = (128 * 1024 * 1024); // new max LOB size
//private const int MaxLobSize = (16 * 1024 * 1024); // current max LOB size
//private const int MaxLobSize = (128 * 1024 * 1024); // new max LOB size
private const int MaxLobSize = (16 * 1024 * 1024); // current max LOB size
private const int LargeSize = (MaxLobSize / 2);
private const int MediumSize = (LargeSize / 2);
private const int OriginSize = (MediumSize / 2);
Expand Down Expand Up @@ -67,8 +67,8 @@ public void SetUp()
command.ExecuteNonQuery();

// Alter session max lob
command.CommandText = "ALTER SESSION SET FEATURE_INCREASED_MAX_LOB_SIZE_IN_MEMORY = 'ENABLED'";
command.ExecuteNonQuery();
//command.CommandText = "ALTER SESSION SET FEATURE_INCREASED_MAX_LOB_SIZE_IN_MEMORY = 'ENABLED'";
//command.ExecuteNonQuery();
}
}
}
Expand Down

0 comments on commit b5ca20c

Please sign in to comment.