File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed
docs/en/interfaces/formats Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 22alias : []
33description : ' Documentation for the Null format'
44input_format : false
5- keywords : ['Null']
5+ keywords : ['Null', 'format' ]
66output_format : true
77slug : /interfaces/formats/Null
88title : ' Null'
@@ -24,4 +24,26 @@ The `Null` format can be useful for performance testing.
2424
2525## Example Usage {#example-usage}
2626
27- ## Format Settings {#format-settings}
27+ Connect to ` play.clickhouse.com ` with clickhouse client:
28+
29+ ``` bash
30+ clickhouse client --secure --host play.clickhouse.com --user explorer
31+ ```
32+
33+ Run the following the query:
34+
35+ ``` sql title="Query"
36+ SELECT town
37+ FROM uk_price_paid
38+ LIMIT 1000
39+ FORMAT ` Null`
40+ ```
41+
42+ ``` response title="Response"
43+ 0 rows in set. Elapsed: 0.002 sec. Processed 1.00 thousand rows, 2.00 KB (506.97 thousand rows/s., 1.01 MB/s.)
44+ Peak memory usage: 297.74 KiB.
45+ ```
46+
47+ Note how 1000 rows were processed, but 0 rows were output in the result set.
48+
49+ ## Format Settings {#format-settings}
You can’t perform that action at this time.
0 commit comments