fix(contrib/drivers/pgsql): incompatible placeholder replacement with old version (#4036)

This commit is contained in:
John Guo
2024-12-13 09:29:34 +08:00
committed by GitHub
parent 5af342adc3
commit ced4b57991
6 changed files with 71 additions and 25 deletions

View File

@ -0,0 +1,5 @@
CREATE TABLE test_enum (
id int8 NOT NULL,
status int2 DEFAULT 0 NOT NULL,
CONSTRAINT test_enum_pk PRIMARY KEY (id)
);