Add copuple cases to test bin_unbin

This commit is contained in:
vdimir 2021-07-06 15:24:30 +03:00
parent c6e13e6e2e
commit a50a98c595
No known key found for this signature in database
GPG Key ID: F57B3E10A21DBB31
2 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,9 @@
00001010
01111111
11111111
0000000100000000
0000000111111111
0000001000000000
00110000
0011000100110000
111001101011010110001011111010001010111110010101

View File

@ -4,6 +4,9 @@ select bin(1);
select bin(10);
select bin(127);
select bin(255);
select bin(256);
select bin(511);
select bin(512);
select bin('0');
select bin('10');
select bin('测试');