ClickHouse/tests/queries/0_stateless/03094_named_tuple_bug24607.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
130 B
MySQL
Raw Normal View History

2024-04-11 12:36:53 +00:00
SELECT
JSONExtract('{"a":1, "b":"test"}', 'Tuple(a UInt8, b String)') AS x,
x.a
SETTINGS allow_experimental_analyzer = 1;