ClickHouse/dbms/tests/queries/0_stateless/00568_empty_function_with_fixed_string.sql

3 lines
125 B
MySQL
Raw Normal View History

2018-02-09 11:38:24 +00:00
SELECT toFixedString('', 4) AS str, empty(str) AS is_empty;
SELECT toFixedString('\0abc', 4) AS str, empty(str) AS is_empty;