[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:
@ -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:
|
||||
|
||||
Reference in New Issue
Block a user