View a markdown version of this page

IS_BOOLEAN function - Amazon Redshift
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Amazon Redshift will no longer support the use of Python UDFs after June 30, 2026. We will start enforcing it in phases. For more information on the details of Python end of life and migration options, see the blog post that was published on June 30, 2025.

IS_BOOLEAN function

Checks whether a value is a BOOLEAN. The IS_BOOLEAN function returns true for constant JSON Booleans. The function returns false for any other values, including null.

Syntax

IS_BOOLEAN(super_expression)

Arguments

super_expression

A SUPER expression or column.

Return type

BOOLEAN

Examples

To check if TRUE is a BOOLEAN using the IS_BOOLEAN function, use the following example.

CREATE TABLE t(s SUPER); INSERT INTO t VALUES (TRUE); SELECT s, IS_BOOLEAN(s) FROM t; +------+------------+ | s | is_boolean | +------+------------+ | true | true | +------+------------+