We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ecea94 commit ae01db5Copy full SHA for ae01db5
internal/data/catalog_db.go
@@ -42,6 +42,7 @@ const (
42
PGTypeBool = "bool"
43
PGTypeNumeric = "numeric"
44
PGTypeJSON = "json"
45
+ PGTypeJSONB = "jsonb"
46
PGTypeGeometry = "geometry"
47
PGTypeTextArray = "_text"
48
)
@@ -539,6 +540,8 @@ func toJSONTypeFromPG(pgType string) string {
539
540
return JSONTypeBoolean
541
case PGTypeJSON:
542
return JSONTypeJSON
543
+ case PGTypeJSONB:
544
+ return JSONTypeJSON
545
case PGTypeTextArray:
546
return JSONTypeStringArray
547
// hack to allow displaying geometry type
0 commit comments