diff --git a/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs b/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs index 2ba060f86..9c7cd8c99 100644 --- a/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs +++ b/Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs @@ -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); @@ -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(); } } }