]
Steven Hawkins resolved TEIID-4005.
-----------------------------------
Fix Version/s: 9.0
8.12.5
Resolution: Done
Added logic that will split the row comparison by target table.
Allow dependent join row value to be split
------------------------------------------
Key: TEIID-4005
URL:
https://issues.jboss.org/browse/TEIID-4005
Project: Teiid
Issue Type: Enhancement
Components: Query Engine
Affects Versions: 8.7.4.6_2
Reporter: Johnathon Lee
Assignee: Steven Hawkins
Fix For: 9.0, 8.12.5
For some queries having a dependent join row value that spans multiple target tables
should be split among those targets.
For example rather than:
(g_0.e1, g_1.e2) IN (<dependent values>))
Use the pre 8.7 form:
(g_0.e1 IN (<dependent values>)) AND (g_1.e2 IN (<dependent values>))