Skip to content

Commit

Permalink
SNOW-1234216: Read structured type enabled flag value
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dprzybysz committed Apr 3, 2024
1 parent 43d8fba commit a1928be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
@SnowflakeJdbcInternalApi
public class StructureTypeHelper {
private static final String STRUCTURED_TYPE_ENABLED_PROPERTY_NAME = "STRUCTURED_TYPE_ENABLED";
private static boolean structuredTypeEnabled = true;
// Boolean.valueOf(System.getProperty(STRUCTURED_TYPE_ENABLED_PROPERTY_NAME));
private static boolean structuredTypeEnabled =
Boolean.valueOf(System.getProperty(STRUCTURED_TYPE_ENABLED_PROPERTY_NAME));

public static boolean isStructureTypeEnabled() {
return structuredTypeEnabled;
Expand Down

0 comments on commit a1928be

Please sign in to comment.