-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.2.0-incubating
-
Component/s: None
-
Labels:None
This query fails in validation:
WITH x AS (SELECT deptno a FROM emp) (SELECT x.a FROM x ORDER BY x.a)
while this one below, basically the same except for the "ORDER BY being gone", succeeds:
WITH x AS (SELECT deptno a FROM emp) (SELECT x.a FROM x)