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
in apply_delta() maybe just use all attributes not consider the index created when create ivm
/*
* For views without aggregates, all attributes are used as keys to identify a
* tuple in a view.
*/
if (!query->hasAggs)
keys = lappend(keys, attr);
The text was updated successfully, but these errors were encountered:
Thank you for your feedback! That's good point.
Actually, the index is used even when all attributes are used as a key, but we don't have to use some attributes if we have a unique key. I'll consider to fix this.
in apply_delta() maybe just use all attributes not consider the index created when create ivm
/*
* For views without aggregates, all attributes are used as keys to identify a
* tuple in a view.
*/
if (!query->hasAggs)
keys = lappend(keys, attr);
The text was updated successfully, but these errors were encountered: