Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
drop table if exists tableA; drop table if exists tableB; create table tableA (a integer,z integer); create table tableB (a integer,b integer,z integer); select a.z, b.b from tableB as b JOIN tableA as a on a.a=b.b;
Error: Error while compiling statement: FAILED: SemanticException Column a Found in more than One Tables/Subqueries (state=42000,code=40000)