mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
add basic tests
This commit is contained in:
parent
7889626046
commit
e281a78950
@ -0,0 +1,22 @@
|
||||
Hello, "world"!
|
||||
<123>
|
||||
&clickhouse
|
||||
\'foo\'
|
||||
Hello, && world
|
||||
Hello, &;& world
|
||||
Hello, &a;& world
|
||||
Hello, <t;& world
|
||||
Hello, <t& world
|
||||
Hello, &t;& world
|
||||
!"#$%&\'()*+,-./012
|
||||
)*+,-./0123456789:;<
|
||||
=>?@ABCDEFGHIJKLMNOP
|
||||
为
|
||||
为
|
||||
�\'123
|
||||
ЦЦЮЮЫㄱ
|
||||
C𝓁𝒾𝒸𝓀𝐻𝑜𝓊𝓈𝑒
|
||||
C𝓁𝒾𝒸𝓀𝐻𝑜𝓊𝓈𝑒
|
||||
C𝓁𝒾𝒸𝓀𝐻𝑜𝓊𝓈𝑒{
|
||||
|
||||
C
|
24
tests/queries/0_stateless/02863_decode_html_component.sql
Normal file
24
tests/queries/0_stateless/02863_decode_html_component.sql
Normal file
@ -0,0 +1,24 @@
|
||||
SELECT decodeHTMLComponent('Hello, "world"!');
|
||||
SELECT decodeHTMLComponent('<123>');
|
||||
SELECT decodeHTMLComponent('&clickhouse');
|
||||
SELECT decodeHTMLComponent(''foo'');
|
||||
SELECT decodeHTMLComponent('Hello, && world');
|
||||
SELECT decodeHTMLComponent('Hello, &;& world');
|
||||
SELECT decodeHTMLComponent('Hello, &a;& world');
|
||||
SELECT decodeHTMLComponent('Hello, <t;& world');
|
||||
SELECT decodeHTMLComponent('Hello, <t& world');
|
||||
SELECT decodeHTMLComponent('Hello, &t;& world');
|
||||
|
||||
SELECT decodeHTMLComponent(' !"#$%&'()*+,-./012');
|
||||
SELECT decodeHTMLComponent(')*+,-./0123456789:;<');
|
||||
SELECT decodeHTMLComponent('=>?@ABCDEFGHIJKLMNOP');
|
||||
SELECT decodeHTMLComponent('为');
|
||||
SELECT decodeHTMLComponent('为');
|
||||
SELECT decodeHTMLComponent('�'123');
|
||||
SELECT decodeHTMLComponent('ЦЦЮЮЫㄱ');
|
||||
SELECT decodeHTMLComponent('C𝓁𝒾𝒸𝓀𝐻𝑜𝓊𝓈𝑒');
|
||||
SELECT decodeHTMLComponent('C𝓁𝒾𝒸𝓀𝐻𝑜𝓊𝓈𝑒');
|
||||
SELECT decodeHTMLComponent('C𝓁𝒾𝒸𝓀𝐻𝑜𝓊𝓈𝑒{');
|
||||
SELECT decodeHTMLComponent('');
|
||||
SELECT decodeHTMLComponent('C');
|
||||
|
Loading…
Reference in New Issue
Block a user