]
Steven Hawkins resolved TEIID-2955.
-----------------------------------
Fix Version/s: 8.7.1
8.8
Resolution: Done
Updated the logic to handle setting the conformed tables appropriately regardless of the
direction of the join.
Teiid selects incorrect source when conformed table is included in
SQL JOIN
---------------------------------------------------------------------------
Key: TEIID-2955
URL:
https://issues.jboss.org/browse/TEIID-2955
Project: Teiid
Issue Type: Bug
Components: Query Engine
Affects Versions: 8.7
Environment: teiid 8.7
Reporter: Filip Elias
Assignee: Steven Hawkins
Fix For: 8.7.1, 8.8
Attachments: server.log
I have two models. postgres for PostgreSQL and mysql for MySQL. I have table
test.conformedTable in the both models
and I have configured conformedTable to be conformed. Table tablepostgre is in the
PostgreSQL database. Table tablemysql in the MySQL.
I want to join conformedTable with tablepostgre and tablemysql.
The query
select a.*,b.* from mysql.test.conformedTable as a, tablemysql b where a.id=b.id
is processed OK, but query
select a.*,b.* from mysql.test.conformedTable as a, tablepostgre b where a.id=b.id throws
an exception (in the attachment)
It seems that teiid searches tablepostgre in the mysql database, but the table is in the
postgresql