-
I'm trying to decode an array of custom (PosgreSQL) types inside a record, using `PgRecordDecoder`. It hits the panic found here: https://github.com/launchbadge/sqlx/blob/2182925e92bc58ec4579c5b1e633…
-
Hi,
I'm converting some code from `query` to `query_typed`, so it can sit behind a transactional pooler.
I have a query that looks like this, whcih works fine:
```
conn.query("SELECT * FROM ma…
-
this is how i defined my enum:
```ts
export const transactionProvider = pgEnum("transaction_provider", [
"zibal",
"idpay",
"manual",
]);
```
output of `drizzle-kit push`;
```
$ npx d…
-
Hi, I have an issue with enums using spring-data-jdbc.
I have a Java enum type:
```
public enum Sentiment {
POSITIVE,
NEGATIVE,
NEUTRAL
}
```
And a corresponding enum type on one o…
-
Currently, we use the same `tree.DNull` singleton to represent the `NULL` datum for all types. However, this causes inconsistencies with Postgres.
In Postgres, the `NULL` datum seems to carry some …
-
### What version of `drizzle-orm` are you using?
0.28.5
### What version of `drizzle-kit` are you using?
0.19.13-e99bac1
### Describe the Bug
I'm using Payload
https://payloadcms.com/
I was…
-
### Issue description
Every time I run `migration:generate` script, I always get the same enum updating SQL queries even though there are no changes in entity classes
### Expected Behavior
No…
-
I didn't dig into the code, but I think PostgreSQL ENUM type are not supported?
While in QGIS the fields are automatically read as ENUMs (with the relative combobox), QField is not showing any comb…
-
### Describe the bug
```Hint: No operator matches the given name and argument types. You might need to add explicit type casts.
Position: 2693```
I dug a bit more
```"oban"."oban_jobs"."state" = …
-
Hi there, basically just checking to see if this something you all would consider adding. Postgres supports enums on columns but it's a two-step process where you make an enum type and then you set th…