We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f0a584 commit 33cdae4Copy full SHA for 33cdae4
1 file changed
gandiva/src/main/cpp/jni_common.cc
@@ -221,7 +221,7 @@ DataTypePtr ProtoTypeToDataType(const gandiva::types::ExtGandivaType& ext_type)
221
return arrow::date64();
222
case gandiva::types::DECIMAL:
223
// TODO: error handling
224
- return arrow::decimal(ext_type.precision(), ext_type.scale());
+ return arrow::decimal128(ext_type.precision(), ext_type.scale());
225
case gandiva::types::TIME32:
226
return ProtoTypeToTime32(ext_type);
227
case gandiva::types::TIME64:
0 commit comments