fix: fix the bug of the numeric/decimal data type in pg (#4686)

This commit is contained in:
POABOB
2025-03-07 19:12:02 +08:00
committed by GitHub
parent e68c683df9
commit 967f0926eb

View File

@@ -9,7 +9,8 @@ import (
var p2m = map[string]string{
"int8": "bigint",
"numeric": "bigint",
"numeric": "double",
"decimal": "double",
"float8": "double",
"float4": "float",
"int2": "smallint",