ClickHouse/tests/queries/0_stateless/02677_decode_url_component.sql

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

6 lines
237 B
MySQL
Raw Normal View History

2023-03-11 01:24:07 +00:00
SELECT
encodeURLComponent('кликхаус') AS encoded,
decodeURLComponent(encoded) = 'кликхаус' AS expected_EQ;
SELECT DISTINCT decodeURLComponent(encodeURLComponent(randomString(100) AS x)) = x FROM numbers(100000);