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
{mode: "rows"} only currently works correctly with un-pivoted views - otherwise all rows are returned. In either case, this mode is very expensive as we are currently calculating deltas for every cell, then discarding this information and recalculating new rows based off the delta primary keys.
This should be re-implemented on the C++ side as a true primary key delta mode and reciprocal to_format() call structure which takes primary keys. It would also be nice to add a "cells" update mode which fully utilizes the underlying cell update code, as well as updates to the perspective-viewer API to utilize this information.
The text was updated successfully, but these errors were encountered:
{mode: "rows"}
only currently works correctly with un-pivotedview
s - otherwise all rows are returned. In either case, this mode is very expensive as we are currently calculating deltas for every cell, then discarding this information and recalculating new rows based off the delta primary keys.This should be re-implemented on the C++ side as a true primary key delta mode and reciprocal
to_format()
call structure which takes primary keys. It would also be nice to add a"cells"
update mode which fully utilizes the underlying cell update code, as well as updates to theperspective-viewer
API to utilize this information.The text was updated successfully, but these errors were encountered: