Skip to content

Commit 6fb813a

Browse files
SNOW-1926861: Run lob tests with 128 MB limit
1 parent 7258bda commit 6fb813a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

Snowflake.Data.Tests/IntegrationTests/SFMaxLobSizeSwitchIT.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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"))

0 commit comments

Comments
 (0)