ClickHouse/tests/queries/0_stateless/02353_ascii.sql

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

6 lines
162 B
MySQL
Raw Normal View History

2022-10-25 04:07:07 +00:00
SELECT ascii('234');
2022-11-03 04:02:31 +00:00
SELECT ascii('');
2022-10-26 10:25:04 +00:00
SELECT ascii(materialize('234'));
2022-11-03 04:02:31 +00:00
SELECT ascii(materialize(''));
2022-10-26 10:25:04 +00:00
SELECT ascii(toString(number) || 'abc') from numbers(10);