reata / sqllineage

SQL Lineage Analysis Tool powered by Python
MIT License
1.19k stars 215 forks source link

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

Open zhengtingxue opened 2 months ago

zhengtingxue commented 2 months ago

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;

reata commented 1 month ago

Please provide complete information based on our issue template, otherwise we can't reproduce the issue.