dolthub / go-mysql-server

A MySQL-compatible relational database with a storage agnostic query engine. Implemented in pure Go.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Transaction support for in-memory database

zachmu opened this issue · comments

Currently unsupported. All transaction statements e.g. start transaction, commit, rollback are no-ops.

Supporting this is challenging, as it requires implementing something like journaled storage.