trigger ci

This commit is contained in:
Ivan Blinkov 2020-05-21 00:08:04 +03:00 committed by GitHub
parent ebef7b9a85
commit 7d0ac4e20f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,9 +28,10 @@ There may be any number of space symbols between syntactical constructions (incl
## Comments {#comments} ## Comments {#comments}
ClickHouse supports either SQL-style and C-style comments. ClickHouse supports either SQL-style and C-style comments:
SQL-style comments start with `--` and continue to the end of the line, a space after `--` can be omitted.
C-style are from `/*` to `*/`and can be multiline, spaces are not required either. - SQL-style comments start with `--` and continue to the end of the line, a space after `--` can be omitted.
- C-style are from `/*` to `*/`and can be multiline, spaces are not required either.
## Keywords {#syntax-keywords} ## Keywords {#syntax-keywords}