[improve](postgresql catalog) support postgresql bytea type to doris string (#18623)

* [improve](postgresql catalog) support postgresql bytea type to doris string

* modify function name

* add case
This commit is contained in:
yongkang.zhong
2023-04-16 18:14:42 +08:00
committed by GitHub
parent 7bc242d665
commit afdac1204d
6 changed files with 58 additions and 0 deletions

View File

@ -586,6 +586,7 @@ public class JdbcClient {
case "varbit":
case "jsonb":
case "uuid":
case "bytea":
return ScalarType.createStringType();
default:
return Type.UNSUPPORTED;