ClickHouse/tests/queries/0_stateless/02192_comment.sql
Nikolai Kochetov ed90a0fc1c Add tests.
2022-02-01 18:57:56 +00:00

17 lines
181 B
SQL

# comment
#! comment2
select 1;
# comment3
#! comment4
select 2; # another one comemnt
#
#!
select 3;
select 1; #!
SELECT # hello
1;
SELECT /* # hello */ 1;
SELECT '
# hello', 1;