[Enhancement](multi-catalogs) Use decimal V3 type in multi-catalogs module. (#18926)

1. Use decimal V3 type in JDBC and Iceberg tables.
2. Fix hdfs TVF decimal V3 type and regression test.
This commit is contained in:
Qi Chen
2023-04-25 14:49:40 +08:00
committed by GitHub
parent a4a85f2476
commit 61b7a52444
4 changed files with 4 additions and 8 deletions

View File

@ -137,6 +137,7 @@ public class ScalarType extends Type {
case DECIMAL32:
case DECIMAL64:
case DECIMAL128:
return createDecimalV3Type(precision, scale);
case DECIMALV2:
return createDecimalType(precision, scale);
default: