Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

enable_case_sensitive_super_attribute - Amazon Redshift
This page has not been translated into your language. Request translation

enable_case_sensitive_super_attribute

Values (default in bold)

true, false

Description

A configuration value that determines whether navigating SUPER data type structures with non-delimited attribute names is case sensitive. When you set enable_case_sensitive_super_attribute to true, navigating SUPER type structures with non-delimited attribute names is case sensitive. When you set the value to false, navigating SUPER type structures with non-delimited attribute names is not case sensitive.

When you enclose an attribute name in double quotation marks and set enable_case_sensitive_identifier to true, case is always preserved, regardless of the setting of the enable_case_sensitive_super_attribute configuration option.

enable_case_sensitive_super_attribute only applies to columns with the SUPER data type. For all other columns, consider using enable_case_sensitive_identifier instead.

For more information on the SUPER data type, see SUPER type and Semistructured data in Amazon Redshift.

Examples

The following example shows the results of selecting SUPER values with enable_case_sensitive_super_attribute enabled and with it disabled.

--Create a table with a SUPER column. CREATE TABLE tbl (col SUPER); --Insert values. INSERT INTO tbl VALUES (json_parse('{ "A": "A", "a": "a" }')); SET enable_case_sensitive_super_attribute TO ON; SELECT col.A FROM tbl; a ----- "A" (1 row) SELECT col.a FROM tbl; a ----- "a" (1 row) SET enable_case_sensitive_super_attribute TO OFF; SELECT col.A FROM tbl; a ----- "a" (1 row) SELECT col.a FROM tbl; a ----- "a" (1 row)

Usage Notes

  • Views and materialized views follow the value of enable_case_sensitive_super_attribute at the time of their creation. Late-binding views, stored procedures, and user-defined functions follow the value of enable_case_sensitive_super_attribute at the time of querying.

  • If you're using autorefresh for materialized views, we recommend setting the enable_case_sensitive_identifier value in your cluster or workgroup's parameter group. This ensures that enable_case_sensitive_identifier stays constant when your materialized views are refreshed. For information on autorefresh for materialized views, see Refreshing a materialized view. For information on setting configuration values in parameter groups, see Amazon Redshift parameter groups in the Amazon Redshift Management Guide.

  • The column name in statement results is always downcased, regardless of the value of enable_case_sensitive_super_attribute. To make the column name case sensitive as well, enable enable_case_sensitive_identifier.

  • We recommend that regular users querying tables with row-level security policies attached have the default enable_case_sensitive_identifier setting. For more information, see For information on row-level security, see Row-level security.

PrivacySite termsCookie preferences
© 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved.