File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/integrations/language-clients/python Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ settings = {'merge_tree_min_rows_for_concurrent_read': 65535,
355
355
client.query(" SELECT event_type, sum(timeout) FROM event_errors WHERE event_time > '2022-08-01'" , settings = settings)
356
356
```
357
357
358
- ### Client _ command _ Method {#client-_ command _ -method}
358
+ ### Client ` command ` Method {#client-command -method}
359
359
360
360
Use the ` Client.command ` method to send SQL queries to the ClickHouse Server that do not normally return data or returns
361
361
a single primitive or array value rather than a full dataset. This method takes the following parameters:
@@ -387,7 +387,7 @@ result
387
387
Out[7 ]: 110
388
388
```
389
389
390
- ### Client _ query _ Method {#client-_ query _ -method}
390
+ ### Client ` query ` Method {#client-query -method}
391
391
392
392
The ` Client.query ` method is the primary way to retrieve a single "batch" dataset from the ClickHouse Server. It
393
393
utilizes the Native ClickHouse format over HTTP to transmit large datasets (up to approximately one million rows)
@@ -465,7 +465,7 @@ generator):
465
465
Each of these methods returns a ` ContextStream ` object that must be opened via a ` with ` statement to start consuming the
466
466
stream. See [ Advanced Queries (Streaming Queries)] ( #streaming-queries ) for details and examples.
467
467
468
- ### Client _ insert _ Method {#client-_ insert _ -method}
468
+ ### Client ` insert ` method {#client-insert -method}
469
469
470
470
For the common use case of inserting multiple records into ClickHouse, there is the ` Client.insert ` method. It takes the
471
471
following parameters:
You can’t perform that action at this time.
0 commit comments