fix(contrib/drivers/pgsql): fix insert error when data struct field has nil in PgSQL (#3679)

This commit is contained in:
oldme
2024-09-09 16:16:20 +08:00
committed by GitHub
parent 448df14860
commit 803cb5a0bc
3 changed files with 40 additions and 3 deletions

View File

@ -0,0 +1,4 @@
CREATE TABLE "public"."%s" (
"text" varchar(255) COLLATE "pg_catalog"."default",
"number" int4
);