Skip to content

Commit

Permalink
remove feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko committed Jun 7, 2024
1 parent a09d876 commit 8d0c5fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Snowflake.Data.Tests/IntegrationTests/StructuredTypesIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,10 @@ private void EnableStructuredTypes(SnowflakeDbConnection connection)
{
using (var command = connection.CreateCommand())
{
command.CommandText = "ALTER SESSION SET FEATURE_STRUCTURED_TYPES = enabled";
command.ExecuteNonQuery();
command.CommandText = "ALTER SESSION SET ENABLE_STRUCTURED_TYPES_IN_FDN_TABLES = true";
command.ExecuteNonQuery();
// command.CommandText = "ALTER SESSION SET FEATURE_STRUCTURED_TYPES = enabled";
// command.ExecuteNonQuery();
// command.CommandText = "ALTER SESSION SET ENABLE_STRUCTURED_TYPES_IN_FDN_TABLES = true";
// command.ExecuteNonQuery();
command.CommandText = "ALTER SESSION SET JDBC_QUERY_FORMAT=JSON";
command.ExecuteNonQuery();

Expand Down

0 comments on commit 8d0c5fa

Please sign in to comment.