mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-09 19:31:11 +01:00
b24747b305
* Updated TransactionWriters, moved locks in roomserver, various other tweaks * Fix redaction deadlocks * Fix lint issue * Rename SQLiteTransactionWriter to ExclusiveTransactionWriter * Fix us not sending transactions through in latest events updater
22 lines
396 B
Go
22 lines
396 B
Go
package sqlutil
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
type DummyTransactionWriter struct {
|
|
}
|
|
|
|
func NewDummyTransactionWriter() TransactionWriter {
|
|
return &DummyTransactionWriter{}
|
|
}
|
|
|
|
func (w *DummyTransactionWriter) Do(db *sql.DB, txn *sql.Tx, f func(txn *sql.Tx) error) error {
|
|
if txn == nil {
|
|
return WithTransaction(db, func(txn *sql.Tx) error {
|
|
return f(txn)
|
|
})
|
|
} else {
|
|
return f(txn)
|
|
}
|
|
}
|