-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CALCITE-6684] Arrow adapter should supports filter conditions of Decimal type #4043
base: main
Are you sure you want to change the base?
Conversation
@@ -194,6 +194,8 @@ private static TreeNode makeLiteralNode(String literal, String type) { | |||
return TreeBuilder.makeLiteral(parseFloat(literal)); | |||
case "double": | |||
return TreeBuilder.makeLiteral(parseDouble(literal)); | |||
case "decimal": | |||
return TreeBuilder.makeDecimalLiteral(literal, 19, 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comply with Calcite's default Decimal type
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should use the type system to retrieve the default type, assuming it is available here.
Maybe there is a default type for Arrow, but the "default" type for Calcite is irrelevant in this context.
private static String getLiteralType(Object literal, RelDataType type) { | ||
if (type.getSqlTypeName() == SqlTypeName.DECIMAL) { | ||
return "decimal"; | ||
} else if (literal instanceof BigDecimal) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since now you are passing type information to this function you should use it everywhere. There is no reason to guess the type based on the Java type of the literal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Quality Gate passedIssues Measures |
@@ -194,6 +194,8 @@ private static TreeNode makeLiteralNode(String literal, String type) { | |||
return TreeBuilder.makeLiteral(parseFloat(literal)); | |||
case "double": | |||
return TreeBuilder.makeLiteral(parseDouble(literal)); | |||
case "decimal": | |||
return TreeBuilder.makeDecimalLiteral(literal, 19, 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should use the type system to retrieve the default type, assuming it is available here.
Maybe there is a default type for Arrow, but the "default" type for Calcite is irrelevant in this context.
} else if (type.getSqlTypeName() == SqlTypeName.VARCHAR | ||
|| type.getSqlTypeName() == SqlTypeName.CHAR) { | ||
return "string"; | ||
} else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there are many unhandled cases, but perhaps this is a good start.
https://issues.apache.org/jira/browse/CALCITE-6684