feat(contrib/drivers/pgsql): add array type varchar[] and text[] converting to Go []string support (#4000)

This commit is contained in:
ninjashixuan
2024-12-05 15:50:59 +08:00
committed by GitHub
parent 5fa33411fc
commit 4ad061faff
4 changed files with 75 additions and 0 deletions

View File

@ -458,6 +458,7 @@ const (
LocalTypeIntSlice LocalType = "[]int"
LocalTypeInt64Slice LocalType = "[]int64"
LocalTypeUint64Slice LocalType = "[]uint64"
LocalTypeStringSlice LocalType = "[]string"
LocalTypeInt64Bytes LocalType = "int64-bytes"
LocalTypeUint64Bytes LocalType = "uint64-bytes"
LocalTypeFloat32 LocalType = "float32"