cashapp / pranadb

Apache License 2.0
613 stars 24 forks source link

Consider removing row modifications #587

Open purplefox opened 2 years ago

purplefox commented 2 years ago

When we pass through a RowBatch in a push DAG, an entry can be an addition, modification or delete - i.e. we pass prev row and current row. Instead we could just pass a row, and it can either be a delete or a put. A modification is just a delete followed by a put. This should simplify the current logic.