Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

required tables are not in EXTERNAL_REQUIRED_TABLES if the tables are created with recursive DDL #98

Open
Matts966 opened this issue Jun 21, 2022 · 1 comment

Comments

@Matts966
Copy link
Owner

example:

create or replace table t1 -- ← created
AS (
select *
from t1 -- ← but referenced
union all
select *
from t2
) 

For now, we can use INSERT or UPDATE statements.

@lukas-at-harren
Copy link

lukas-at-harren commented Jun 22, 2022

Oh, wow. Good catch! Did not have that issue yet, but definitely worth supporting that, because I believe BQ would be able to support it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants