mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Merge pull request #65763 from yariks5s/fix_docs_ch_local
Fix for issue #65757
This commit is contained in:
commit
4acfad66c2
@ -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:
|
Previous example is the same as:
|
||||||
|
|
||||||
``` bash
|
``` 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);
|
CREATE TABLE table (a Int64, b Int64) ENGINE = File(CSV, stdin);
|
||||||
SELECT a, b FROM table;
|
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.
|
Read 2 rows, 32.00 B in 0.000 sec., 4987 rows/sec., 77.93 KiB/sec.
|
||||||
1 2
|
1 2
|
||||||
3 4
|
3 4
|
||||||
|
Loading…
Reference in New Issue
Block a user