Skip to content

Commit decf5f9

Browse files
authored
fix headers
1 parent 5f5cf3b commit decf5f9

File tree

1 file changed

+3
-3
lines changed
  • docs/integrations/language-clients/python

1 file changed

+3
-3
lines changed

docs/integrations/language-clients/python/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ Similarly, you could save data in [TabSeparated](/interfaces/formats#tabseparate
561561
For use cases which do not require transformation between ClickHouse data and native or third party data types and
562562
structures, the ClickHouse Connect client provides two methods for direct usage of the ClickHouse connection.
563563

564-
#### Client _raw_query_ Method {#client-_raw_query_-method}
564+
#### Client `raw_query` Method {#client_raw_query_method}
565565

566566
The `Client.raw_query` method allows direct usage of the ClickHouse HTTP query interface using the client connection.
567567
The return value is an unprocessed `bytes` object. It offers a convenient wrapper with parameter binding,
@@ -579,11 +579,11 @@ error handling, retries, and settings management using a minimal interface:
579579
It is the caller's responsibility to handle the resulting `bytes` object. Note that the `Client.query_arrow` is just a
580580
thin wrapper around this method using the ClickHouse `Arrow` output format.
581581

582-
#### Client _raw_stream_ Method {#client-_raw_stream_-method}
582+
#### Client `raw_stream` Method {#client_raw_stream_method}
583583
The `Client.raw_stream` method has the same API as the `raw_query` method, but returns an `io.IOBase` object which can be used
584584
as a generator/stream source of `bytes` objects. It is currently utilized by the `query_arrow_stream` method.
585585

586-
#### Client _raw_insert_ Method {#client-_raw_insert_-method}
586+
#### Client `raw_insert` Method {#client_raw_insert_method}
587587

588588
The `Client.raw_insert` method allows direct inserts of `bytes` objects or `bytes` object generators using the client
589589
connection. Because it does no processing of the insert payload, it is highly performant. The method provides options

0 commit comments

Comments
 (0)