-
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-6927] Add rule for join condition remove IS NOT DISTINCT FROM #4277
base: main
Are you sure you want to change the base?
Conversation
34fd858
to
6e4ffb6
Compare
//~ Inner Classes ---------------------------------------------------------- | ||
|
||
/** Shuttle that removes 'x IS NOT DISTINCT FROM y' and converts it | ||
* to '(COALESCE(x, '') = COALESCE(y, '')) |
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.
'' is not an accurate description of what's happening.
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
RexNode operand1 = tmpCall.operands.get(1); | ||
|
||
RexNode operand0Zero = | ||
rexBuilder.makeZeroLiteral(operand0.getType()); |
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.
this only works if the type is a numeric type.
joins work on arbitrary types, including arrays and maps
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.
I missed this question. I will think about how to make it compatible with complex types.
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
This does not look like a traditional optimization rule, since it does not really change the plan in any way, it just replaces some expressions with equivalent ones. I don't know if there is a better place for it, though. |
b0f202c
to
035adc1
Compare
} | ||
|
||
for (RexNode op : found.getOperands()) { | ||
if (op.getType().getSqlTypeName() == SqlTypeName.MAP) { |
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.
I actually think maps can be compared, but it's fine to skip this case too.
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.
I referred to the implementation of spark, it does not support map comparison. But I agree with your, map should be comparable. I will skip the map comparison for now, and modify it later if I have more references. WDYT
if (operand.getType().getSqlTypeName() == SqlTypeName.ARRAY) { | ||
ArraySqlType arrayType = (ArraySqlType) operand.getType(); | ||
RelDataType elementType = arrayType.getComponentType(); | ||
RexNode elementZero = rexBuilder.makeZeroLiteral(elementType); |
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 need to call the function recursively, because ARRAY can have ARRAY as elements.
Also, this may work for MULTISET too.
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 is also the case of ROW types.
Maybe you want to enhance the makeZeroLiteral function to handle these as well?
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.
Great Idea! I think I can create a new ticket to complete this suggestion first.
please see: CALCITE-6927