Merge pull request #65763 from yariks5s/fix_docs_ch_local

Fix for issue #65757
This commit is contained in:
Yarik Briukhovetskyi 2024-06-27 22:55:52 +00:00 committed by GitHub
commit 4acfad66c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -236,10 +236,10 @@ Read 2 rows, 32.00 B in 0.000 sec., 5182 rows/sec., 80.97 KiB/sec.
Previous example is the same as:
``` bash
$ echo -e "1,2\n3,4" | clickhouse-local --query "
$ echo -e "1,2\n3,4" | clickhouse-local -n --query "
CREATE TABLE table (a Int64, b Int64) ENGINE = File(CSV, stdin);
SELECT a, b FROM table;
DROP TABLE table"
DROP TABLE table;"
Read 2 rows, 32.00 B in 0.000 sec., 4987 rows/sec., 77.93 KiB/sec.
1 2
3 4