Evgeny Stanilovsky created IGNITE-19125:
-------------------------------------------
Summary: Sql. Expected errors on joins are not rised after bump
calcite version to 1.34
Key: IGNITE-19125
URL: https://issues.apache.org/jira/browse/IGNITE-19125
Project: Ignite
Issue Type: Bug
Components: sql
Affects Versions: 3.0.0-beta1
Reporter: Evgeny Stanilovsky
After version was bumped [1], some expected errors are not rised:
{noformat}
statement error
SELECT * FROM t1 JOIN t2 USING(a) JOIN t2 t2b USING (b);
# this is the same, but now with a duplicate potential binding on the RHS
statement error
select * from (values (1)) tbl(i) join ((values (1)) tbl2(i) join (values (1))
tbl3(i) on tbl2.i=tbl3.i) using (i)
{noformat}
In caclite 1.32 it works properly well.
[1] https://issues.apache.org/jira/browse/IGNITE-18752
--
This message was sent by Atlassian Jira
(v8.20.10#820010)