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
There is a possibility for situation in which you can enable a incremental view, but cannot refresh it due to wrong order of tables being joined and 'unknown column' exception.
I resolved the situation by editing delta.sql file on line 655, originally it ordered the tables by idx, i changed it to mview_join_order ASC, mview_table_id ASC, idx;.
My problem was solved by this, can you confirm if this is a bug.
The text was updated successfully, but these errors were encountered:
There is a possibility for situation in which you can enable a incremental view, but cannot refresh it due to wrong order of tables being joined and 'unknown column' exception.
I resolved the situation by editing delta.sql file on line 655, originally it ordered the tables by
idx
, i changed it tomview_join_order ASC, mview_table_id ASC, idx;
.My problem was solved by this, can you confirm if this is a bug.
The text was updated successfully, but these errors were encountered: