Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
None
-
None
-
None
Description
The SQL parser is accepting queries of the form:
SELECT * FROM a, b
but internally generates a query tree equivalent to:
SELECT * FROM b
Either the query should be rejected, or the query tree should reflect the original query.