Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
Improve how LatticeSuggester deduces foreign keys.
Currently LatticeSuggester uses SqlStatisticProvider and deduces that a join between two tables is "many to one" if the left table has more rows than the right table. Clearly this is wrong, because it does not take into account the keys of the join.
I think we will change the method
double tableCardinality(List<String> qualifiedTableName)
to
double tableCardinality(RelOptTable table)
and add a method
boolean isForeignKey(RelOptTable fromTable, List<String> fromColumns, RelOptTable toTable, List<String> toColumns)
For example, isForeignKey(empTable, ["DEPTNO"], deptTable, ["DEPTNO"]) would return true.
One valid implementation might look at the catalog for foreign key constraints; another might execute a query to see whether every row in emp is matched by exaclty one row in dept. Here is a query that might do it:
select emp.deptno from (select distinct deptno from emp) as emp left join dept using (deptno) group by emp.deptno having count(dept.deptno) != 1
If the query returns any rows it is not a foreign key.
Attachments
Issue Links
- relates to
-
CALCITE-3449 Sync the table name logic from TableScan into the TableModify
- Closed
- links to