-
With Doobie 0.12.1 and PostgreSQL 11.
Given this setup:
```sql
create schema custom;
create type custom.foo as enum('Bar');
create type foo as enum('Bar');
```
an analysis of a simple query usi…
-
**Describe the bug**
Hello metabase team, we have defined a model over a table which adds an extra customized field to it. When now selecting the model and creating an additional filter on the model …
-
Trying to connect with postgres using jdbc driver
At Postgres:
```
CREATE TYPE status AS ENUM ('active', 'disabled');
CREATE TABLE campaign (
id integer,
status status
)
INSERT INTO …
-
## Issue Description
In each generated migration I get sql command to alter column "avatarUri" to default value, but default value is already in database
### Expected Behavior
Clean migration wit…
-
Enums in subgraph schemas should have unique labels, i.e., the following should be rejected with a clear error message
```
enum Answer { yes no yes }
```
because `yes` appears twice.
Right now,…
-
Hi! In my code I think I have an issue with renaming of nullable enum values, so I figured I try running your tests and maybe extending them. However I didn't get that far, because I get test fails wi…
-
## GORM Playground Link
https://github.com/go-gorm/playground/pull/586
## Description
This test fails after upgrading `gorm.io/driver/postgres` from v1.4.5 to v1.4.6
The test adds an enum …
-
### What type of enhancement is this?
API improvement
### What does the enhancement do?
The error messages in GreptimeDB have some issues:
* Errors from DataFusion always appear as interna…
-
### Description
It would be nice to support the postgres enum type:
https://www.postgresql.org/docs/9.1/datatype-enum.html
-
Columns of type enum in Postgres show up in the diagram as strings. Is there a way show the type as enum? Or maybe even add enums to the diagram as entities?
Thanks, this is a great package.