ClickHouse/tests/queries/0_stateless/02670_map_literal_cast.sql

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

3 lines
147 B
MySQL
Raw Normal View History

2023-02-26 13:45:02 +00:00
SELECT CAST([('a', 1), ('b', 2)], 'Map(String, UInt8)');
SELECT CAST((('a', 1), ('b', 2)), 'Map(String, UInt8)'); -- { serverError TYPE_MISMATCH }