[feature](catalog) support clob type in oracle jdbc catalog (#21532)

This commit is contained in:
lsy3993
2023-07-27 15:49:15 +08:00
committed by GitHub
parent 0670e38d5c
commit 4f6a3c5bf0
6 changed files with 75 additions and 1 deletions

View File

@ -114,9 +114,9 @@ public class JdbcOracleClient extends JdbcClient {
case "RAW":
case "LONG RAW":
case "INTERVAL":
case "CLOB":
return ScalarType.createStringType();
case "BLOB":
case "CLOB":
case "NCLOB":
case "BFILE":
case "BINARY_FLOAT":