From c2a61914b48f95832e4ba7104d8714d18f5471fd Mon Sep 17 00:00:00 2001 From: sfc-gh-ext-simba-lf Date: Mon, 29 Jan 2024 16:00:22 -0800 Subject: [PATCH] SNOW-969717: Enable increased max lob size feature --- Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); } } }