From b5ca20ce29a21ff356008a58c5df242524452130 Mon Sep 17 00:00:00 2001 From: sfc-gh-ext-simba-lf Date: Mon, 29 Jan 2024 16:16:52 -0800 Subject: [PATCH] SNOW-969717: Set max lob size to current max value --- 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 9c7cd8c99..2ba060f86 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(); } } }