@sqg/sqg 0.18.0 → 0.20.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 +1 -0
- package/dist/index.mjs +2790 -2594
- package/dist/sqg.mjs +233 -31
- package/dist/templates/java-duckdb-arrow.hbs +3 -1
- package/dist/ui-public/assets/index-C22caD-U.js +45 -0
- package/dist/ui-public/assets/index-DQWvi9s-.css +1 -0
- package/dist/ui-public/index.html +2 -2
- package/dist/ui-server.mjs +29 -78
- package/package.json +2 -2
- package/dist/ui-public/assets/index-BIikjK2O.js +0 -45
- package/dist/ui-public/assets/index-DHD4h34g.css +0 -2
package/README.md
CHANGED
|
@@ -120,6 +120,7 @@ console.log(user?.name);
|
|
|
120
120
|
| `-- QUERY name` | SELECT query returning rows |
|
|
121
121
|
| `-- QUERY name :one` | Query returning single row or undefined |
|
|
122
122
|
| `-- QUERY name :pluck` | Return single (first) column value |
|
|
123
|
+
| `-- QUERY name :result=Foo` | Name the row type (Java). Add it to ONE query and every same-shape query shares it. Full-table `SELECT *` reuses the `TABLE` row type without annotation. |
|
|
123
124
|
| `-- EXEC name` | INSERT/UPDATE/DELETE (no result rows) |
|
|
124
125
|
| `-- TESTDATA name` | Test data, runs after migrations |
|
|
125
126
|
| `@set var = value` | Define parameter with sample value |
|