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
// when an insert to a table with dependent materialized views fails during the materialized view processing, said table will still retain the rows inserted.
64
+
// this setting ensure that when the insert query gets retried by our code, the attempt doesn't get filtered out by the target table doing de-duplication,
65
+
// and instead ensures that all dependent materialized views receive the data anyways
"insert_deduplication_token": insert_uuid, // this is used by tables & materialized views to correctly handle retries of inserts (skipping them if they already have the resulting rows, for example)
122
+
"insert_deduplicate": true,// enforce deduplication to be done by tables & materialized views
0 commit comments