Skip to content

Commit

Permalink
SNOW-1234216: Read structured type enabled flag value (#1693)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dprzybysz authored Apr 3, 2024
1 parent 43d8fba commit 1c4c7e8
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 1c4c7e8

Please sign in to comment.