@rindle/query-compiler 0.10.1 → 0.10.3

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
  3. package/src/ast.ts +1 -1
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Compiles a Rindle query **`Ast`** into **one SQL `SELECT`** whose single column
4
4
  `"rindle_result"` is the entire nested result tree as JSON — the server-side realization of
5
5
  [`203-MUTATOR-READS-DESIGN.md`](../../designs-implemented) Phase 2, specified in
6
- [`POSTGRES-READ-COMPILER-DESIGN.md`](../../designs/POSTGRES-READ-COMPILER-DESIGN.md).
6
+ [`POSTGRES-READ-COMPILER-DESIGN.md`](../../designs-deprecated/POSTGRES-READ-COMPILER-DESIGN.md).
7
7
 
8
8
  A server mutator runs the compiled SELECT on its **already-open** Postgres transaction, so it
9
9
  reads its own uncommitted writes for free (read-your-writes). Compilation is a **pure function
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rindle/query-compiler",
3
- "version": "0.10.1",
3
+ "version": "0.10.3",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "README.md"
26
26
  ],
27
27
  "dependencies": {
28
- "@rindle/client": "0.10.1"
28
+ "@rindle/client": "0.10.3"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.10.0",
package/src/ast.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // Re-export the canonical Zero-wire AST types from @rindle/client — the single source of
2
2
  // truth for the query shape the builder emits (`client/src/ast.ts`) and the Rust engine
3
- // deserializes (`rust/src/ast.rs`). The compiler consumes these verbatim, so it can never
3
+ // deserializes (`rust/rindle/src/ast.rs`). The compiler consumes these verbatim, so it can never
4
4
  // drift from what the client produces.
5
5
  export type {
6
6
  Aggregate,