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
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: