The bulk of the transaction manager has been rewritten to pass BEGIN TRANSACTION and COMMIT TRANSACTION statements to the execution engine. Additionally, each statement passed to the execution engine is associated with a transaction ID. This will allow the execution engine to manage write-ahead logging for transactions.
The bulk of the transaction manager has been rewritten to pass
BEGIN TRANSACTION
andCOMMIT TRANSACTION
statements to the execution engine. Additionally, each statement passed to the execution engine is associated with a transaction ID. This will allow the execution engine to manage write-ahead logging for transactions.