You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Iceberg uses hidden partitioning it means you don't need a partition clause in your INSERT statements.
The current get_insert_overwrite_sql macro throws an error whenever the iceberg table uses partition transforms. This can be avoided altogether by omitting the partition clause. For example:
It would probably be a good idea to add a check somewhere for the case someone tries to set a INSERT OVERWRITE incremental strategy for tables that use the BUCKET transform (as it is not allowed).
The text was updated successfully, but these errors were encountered:
From the docs:
The current
get_insert_overwrite_sql
macro throws an error whenever the iceberg table uses partition transforms. This can be avoided altogether by omitting the partition clause. For example:It would probably be a good idea to add a check somewhere for the case someone tries to set a INSERT OVERWRITE incremental strategy for tables that use the BUCKET transform (as it is not allowed).
The text was updated successfully, but these errors were encountered: