fix(postgres): get correctly qualified type name in describe

This commit is contained in:
Austin Bonander
2024-05-31 13:25:08 -07:00
parent 05a10de4d8
commit 10192019d8
3 changed files with 40 additions and 1 deletions

View File

@@ -51,3 +51,7 @@ CREATE OR REPLACE PROCEDURE forty_two(INOUT forty_two INT = NULL)
CREATE TABLE test_citext (
foo CITEXT NOT NULL
);
CREATE SCHEMA IF NOT EXISTS foo;
CREATE ENUM foo."Foo" ('Bar', 'Baz');