picovolt 1.7.1 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -4
- package/package.json +1 -1
- package/picovolt_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -111,10 +111,24 @@ cargo run --release --example repl # interactive SQL shell (pvsql)
|
|
|
111
111
|
cargo run --release --example bench # evaluation harness across modes and workloads
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
-
Install the
|
|
115
|
-
`pv inspect`, `pv history`, `pv import`, `pv export`, and `pv bake`.
|
|
116
|
-
|
|
117
|
-
are
|
|
114
|
+
Install the full CLI with `cargo install picovolt --features data-tools`, then use `pv query`,
|
|
115
|
+
`pv inspect`, `pv history`, `pv diff`, `pv import`, `pv export`, and `pv bake`.
|
|
116
|
+
Parquet/SQLite conversion, query explanations, inspection, resumable baking,
|
|
117
|
+
and dataset signing are documented in [Data tools](docs/DATA_TOOLS.md).
|
|
118
|
+
|
|
119
|
+
Compare two MVCC snapshots with:
|
|
120
|
+
|
|
121
|
+
```sh
|
|
122
|
+
pv diff ./data users --from 42 --to 57
|
|
123
|
+
pv diff ./data users --from 42 --to 57 --format jsonl
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
CSV is the default and identifies each row with an `_change` column. JSONL uses
|
|
127
|
+
`{"change":"added|removed","row":{...}}`. The diff is deterministic and
|
|
128
|
+
duplicate-aware; an update is represented as a removed row followed by an added
|
|
129
|
+
row. Copyable Rust, Python, Go, Node, and browser projects are in
|
|
130
|
+
[`starters/`](starters/README.md); supported adapters are catalogued in
|
|
131
|
+
[`docs/INTEGRATIONS.md`](docs/INTEGRATIONS.md).
|
|
118
132
|
|
|
119
133
|
SQL supports the normal PicoVolt CRUD and schema statements plus projection,
|
|
120
134
|
filters, aggregates, grouping, time travel, ordering, and pagination. The
|
package/package.json
CHANGED
package/picovolt_bg.wasm
CHANGED
|
Binary file
|