sqllineage icon indicating copy to clipboard operation
sqllineage copied to clipboard

[hive-dialect] order by and union all together it throw error

Open zhengtingxue opened this issue 9 months ago • 1 comments

error_sql: insert into a select a,b,c from ( select a,b,c from b order by c desc limit 10 union all select a,b,c from c ) t;

succ_sql: insert into a select a,b,c from ( select a,b,c from b union all select a,b,c from c ) t;

zhengtingxue avatar Apr 30 '24 06:04 zhengtingxue