blob: cfd93b9eceade9460d64f0b449e5256689e72580 [file] [log] [blame]
# name: test/sql/cast/test_cast_null.test
# description: CAST NULL
# feature: SQL F201(CAST function)
# group: [cast]
statement error: Failed to parse query: Incorrect syntax near the keyword 'NULL'
SELECT CAST(NULL AS NULL);
statement error: Failed to parse query: Encountered "::"
SELECT NULL::NULL;
statement error: Failed to parse query: Incorrect syntax near the keyword 'NULL'
SELECT CAST(c AS NULL) FROM (VALUES ('a')) t(c);