Tags: ashuka24/gporca
Tags
Exit early during constraint derivation for unsupport comparison oper… …ators GPDB OSS issue: https://github.com/greenplum-db/gpdb/issues/4938 For the following query: ```sql create table like_error (some_text text); select * from like_error where some_text LIKE ANY (ARRAY['%text1%']); ``` In ORCA's constraint derivation, the LIKE predicate is not a supported operation. We should therefore no do further processing for all such unsupported operations and move on to the next supported predicate. Prior to this fix, we would crash. This issue has now been resolved. Bump ORCA to v2.59.0
Add missing Xforms that generate IndexedNLJ to PbsIndexJoinXforms() PbsIndexJoinXforms() returns a set of xforms that generate indexed nested loop join. The xforms added where not added to this function when they where created, this causes xforms to be fired when the user wants to disable all xforms that generate indexed nested loop join Also bump ORCA version to 2.56.2.
PreviousNext