640 implements the tx-* log API, and one of the tests uses both (tx-ids) and (tx-data). This leads to two walks of the transactions table, which could be coalesced into one walk. This is a specific case of a more general optimization pattern where-by known combinations of functions and binding forms can be transformed.
640 implements the
tx-*
log API, and one of the tests uses both(tx-ids)
and(tx-data)
. This leads to two walks of thetransactions
table, which could be coalesced into one walk. This is a specific case of a more general optimization pattern where-by known combinations of functions and binding forms can be transformed.