ClickHouse/tests/queries/0_stateless/02815_alias_to_length.sql

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

7 lines
212 B
MySQL
Raw Normal View History

2023-07-17 02:59:40 +00:00
SELECT OCTET_LENGTH('1234');
2023-07-17 03:18:30 +00:00
SELECT OcTet_lenGtH('1234');
SELECT OCTET_LENGTH('你好,世界');
-- This is a implementation-specific behavior of getting the length of an array.
SELECT OCTET_LENGTH([1,2,3,4]);