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
Copy file name to clipboardExpand all lines: examples/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ If something is missing, or you found a mistake in one of these examples, please
8
8
9
9
### General usage
10
10
11
-
-[usage.rs](usage.rs) - creating tables, executing other DDLs, inserting the data, and selecting it back. Additionally, it covers `WATCH` queries. Optional cargo features: `inserter`, `watch`.
11
+
-[usage.rs](usage.rs) - creating tables, executing other DDLs, inserting the data, and selecting it back. Optional cargo features: `inserter`.
-[inserter.rs](inserter.rs) - using the client-side batching via the `inserter` feature. Cargo features: requires `inserter`.
14
14
-[async_insert.rs](async_insert.rs) - using the server-side batching via the [asynchronous inserts](https://clickhouse.com/docs/en/optimize/asynchronous-inserts) ClickHouse feature
@@ -57,7 +57,7 @@ cargo run --package clickhouse --example async_insert
57
57
If a particular example requires a cargo feature, you could run it as follows:
58
58
59
59
```sh
60
-
cargo run --package clickhouse --example usage --features inserter watch
60
+
cargo run --package clickhouse --example usage --features inserter
61
61
```
62
62
63
63
Additionally, the individual examples should be runnable via the IDE such as CLion or RustRover.
0 commit comments