HenryOlson / optiq-web

Optiq adapter for HTML tables
Apache License 2.0
13 stars 2 forks source link

Spurious equijoin warning #3

Closed HenryOlson closed 10 years ago

HenryOlson commented 10 years ago

Some queries produce an (apparently) spurious equijoin warning. For example, using the provided example schema (target/test-classes.wiki.json), the following query produces warnings:

select count(*) "City Count", sum(100 * c."Population" / s."Population") "Pct State Population" from "Cities" c, "States" s where c."State" = s."State" and s."State" = 'California';
Feb 26, 2014 3:29:46 PM net.hydromatic.optiq.rules.java.JavaRules$EnumerableJoinRule convert
WARNING: org.eigenbase.rel.InvalidRelException: EnumerableJoinRel only supports equi-join
HenryOlson commented 10 years ago

Will be addressed in: https://github.com/julianhyde/optiq/issues/163