jet
jet copied to clipboard
Type safe SQL builder with code generation and automatic query result data mapping
Bumps [github.com/jackc/pgx/v4](https://github.com/jackc/pgx) from 4.16.0 to 4.17.0. Changelog Sourced from github.com/jackc/pgx/v4's changelog. 4.17.0 (August 6, 2022) Upgrade pgconn to v1.13.0 Upgrade pgproto3 to v2.3.1 Upgrade pgtype to v1.12.0 Allow background pool...
Bumps [github.com/jackc/pgconn](https://github.com/jackc/pgconn) from 1.12.0 to 1.13.0. Changelog Sourced from github.com/jackc/pgconn's changelog. 1.13.0 (August 6, 2022) Add sslpassword support (Eric McCormack and yun.xu) Add prefer-standby target_session_attrs support (sergey.bashilov) Fix GSS ErrorResponse...
Hello, Thanks for this great lib!. I happen to use a lot of JSONB types for postgres. One of the scenarios I have is to do a WHERE clause on...
Hey y'all, I was wondering if it is possible to skip certain fields while scanning rows into a destination. I think there could be two potential solutions that could work...
**Describe the bug** - `.IN(...)` and `.NOT_IN(...)` can not be used in conjuction with a slice of values (`Int`, `Float`, `String`, etc). - The [`Expression` type](https://github.com/go-jet/jet/blob/master/internal/jet/expression.go#L5-L30) as well as `Int`,...
**Is your feature request related to a problem? Please describe.** I would like to generate the following SQL query: ```sql SELECT /*+ MAX_EXECUTION_TIME(1000) */ * FROM orders; ``` This syntax...
**Is your feature request related to a problem? Please describe.** We are using a lot of `json` fields in our postgres database. And it's hard to do the UPSERT with...
**Describe the bug** The postgres dialect exports `COALESCE` in `postgres/functions.go`, but the MySQL dialect lacks it. It's a pretty ubiquitous function, so I believe this is probably a bug. **Code...
**Is your feature request related to a problem? Please describe.** The JSON we send back needs to be lower-case. We don't want to add it to the generated model structs...
**Describe the bug** A clear and concise description of what the bug is. There are some public APIs that expose internal tyeps, for example `Table.INSERT` https://github.com/go-jet/jet/blob/master/mysql/table.go#L10 `jet.Column` is internal. **Expected...