jet
jet copied to clipboard
Type safe SQL builder with code generation and automatic query result data mapping
Bumps [github.com/google/go-cmp](https://github.com/google/go-cmp) from 0.5.9 to 0.6.0. Release notes Sourced from github.com/google/go-cmp's releases. v0.6.0 New API: (#340) Add cmpopts.EquateComparable Documentation changes: (#337) Use of hotlinking of Go identifiers Build changes: (#325)...
Bumps [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) from 1.14.17 to 1.14.22. Commits 6ee3e67 close channel 4702d9b Update amalgamation code to 3.45.1 64bbe62 add example cdc8095 Update amalgamation code to 3.45.0 d3c3333 update go version 1f0dc0a...
**Is your feature request related to a problem? Please describe.** Currently in order to use Jet across multiple schemas, you have to invoke it multiple times which is not great...
**Describe the bug** Code generation fails for Postgres Enums. ```sql -- -- Name: task_type; Type: TYPE; Schema: tasks; Owner: - -- CREATE TYPE tasks.task_type AS ENUM ( 'S3:INIT', 'PCAP:MERGE', 'CTRL:SUBMIT',...
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.8.2 to 1.8.4. Commits f97607b Create GitHub release when new release tag is pushed (#1354) 4c93d8f EqualExportedValues: Handle nested pointer, slice and map fields (#1379) 4b2f4d2 add...
Bumps [github.com/lib/pq](https://github.com/lib/pq) from 1.10.8 to 1.10.9. Release notes Sourced from github.com/lib/pq's releases. v1.10.9 Fixes backwards incompat bug with 1.13. Fixes pgpass issue Commits 2a217b9 add version check for go 1.15...
**Describe the bug** Per [this page](https://sqlite.org/datatype3.html) about SQLite's data types, INTEGER and REAL columns are loaded into memory as 64-bit ints and floats, respectively. However, jet generates these as 32-bit...
**Is your feature request related to a problem? Please describe.** The type `OrderByClause` does not support optional `[NULLS { FIRST | LAST }]` ([PostgreSQL](https://www.postgresql.org/docs/current/queries-order.html)) expression, Causing Nulls always being first...
**Is your feature request related to a problem? Please describe.** I would like to be able to use the `FETCH { FIRST | NEXT } [ count ] { ROW...
### Discussed in https://github.com/go-jet/jet/discussions/297 Originally posted by **yuphing-ong** December 14, 2023 I tried a table like this: ``` CREATE TABLE test ( jvalues TEXT NOT NULL, -- virtual column for...