You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Supports compression and decompression (LZ4 and LZ4HC).
22
25
* Provides API for selecting.
23
26
* Provides API for inserting.
24
27
* Provides API for infinite transactional (see below) inserting.
25
28
* Provides API for watching live views.
26
-
* Compression and decompression (LZ4).
27
29
* Provides mocks for unit testing.
28
30
31
+
Note: [ch2rs](https://github.com/loyd/ch2rs) is useful to generate a row type from ClickHouse.
32
+
29
33
## Usage
34
+
30
35
To use the crate, add this to your `Cargo.toml`:
31
36
```toml
32
37
[dependencies]
@@ -126,7 +131,6 @@ insert.end().await?;
126
131
* If `end()` isn't called, the `INSERT` is aborted.
127
132
* Rows are being sent progressively to spread network load.
128
133
* ClickHouse inserts batches atomically only if all rows fit in the same partition and their number is less [`max_insert_block_size`](https://clickhouse.tech/docs/en/operations/settings/settings/#settings-max_insert_block_size).
129
-
*[ch2rs](https://github.com/loyd/ch2rs) is useful to generate a row type from ClickHouse.
130
134
131
135
</details>
132
136
<details>
@@ -226,7 +230,7 @@ See [examples](https://github.com/loyd/clickhouse.rs/tree/master/examples).
0 commit comments