Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public class SFMaxLobSizeSwitchIT : SFBaseTest
private const string SqlSelectLargeString = "select randstr(20000000, random()) as large_str";

[Test]
[Ignore("TODO: Enable when Max LOB size is available on the automated tests environment")]
public void TestIncreaseMaxLobSizeParameterSwitchSelect()
{
using (var conn = new SnowflakeDbConnection(ConnectionString + "poolingEnabled=false"))
Expand Down
Loading