mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-03-03 07:14:27 -06:00
33 lines
748 B
Go
33 lines
748 B
Go
package sqlutil
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
// DummyWriter implements sqlutil.Writer.
|
|
// The DummyWriter is designed to allow reuse of the sqlutil.Writer
|
|
// interface but, unlike ExclusiveWriter, it will not guarantee
|
|
// writer exclusivity. This is fine in PostgreSQL where overlapping
|
|
// transactions and writes are acceptable.
|
|
type DummyWriter struct {
|
|
}
|
|
|
|
// NewDummyWriter returns a new dummy writer.
|
|
func NewDummyWriter() Writer {
|
|
return &DummyWriter{}
|
|
}
|
|
|
|
func (w *DummyWriter) Do(db *sql.DB, txn *sql.Tx, f func(txn *sql.Tx) error) error {
|
|
if db != nil && txn == nil {
|
|
return WithTransaction(db, func(txn *sql.Tx) error {
|
|
return f(txn)
|
|
})
|
|
} else {
|
|
return f(txn)
|
|
}
|
|
}
|
|
|
|
func (w *DummyWriter) Safe() string {
|
|
return "DummyWriter"
|
|
}
|