jet icon indicating copy to clipboard operation
jet copied to clipboard

Type safe SQL builder with code generation and automatic query result data mapping

Results 73 jet issues
Sort by recently updated
recently updated
newest added

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...

dependencies

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...

dependencies

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...

missing feature

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...

missing feature

**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`,...

bug

**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...

missing feature

**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...

missing feature

**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...

bug

**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...

missing feature

**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...

bug