mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-05 08:05:28 +00:00

* raise lineage error when table does not exist * added test case for partial success * format * format * fixed tests
410 B
410 B
1 | query_text | database_name | schema_name |
---|---|---|---|
2 | select * from sales | dvdrental | public |
3 | select * from marketing | dvdrental | public |
4 | insert into marketing select * from sales | default | public |
5 | insert into dvdrental.public.staff as (select id from non_existent union select * from dvdrental.public.customer) | dvdrental | public |
6 | insert into dvdrental.public.actor as (select * from dvdrental.public.customer) | dvdrental | public |