mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-22 05:23:09 -06:00
Return to a working state hopefully
This commit is contained in:
parent
a15ce36f35
commit
123bc72c0c
|
|
@ -56,6 +56,13 @@ type Database struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Database) NewDatabaseSnapshot(ctx context.Context) (*DatabaseTransaction, error) {
|
func (d *Database) NewDatabaseSnapshot(ctx context.Context) (*DatabaseTransaction, error) {
|
||||||
|
return d.NewDatabaseTransaction(ctx)
|
||||||
|
|
||||||
|
/*
|
||||||
|
TODO: Repeatable read is probably the right thing to do here,
|
||||||
|
but it seems to cause some problems with the invite tests, so
|
||||||
|
need to investigate that further.
|
||||||
|
|
||||||
txn, err := d.DB.BeginTx(ctx, &sql.TxOptions{
|
txn, err := d.DB.BeginTx(ctx, &sql.TxOptions{
|
||||||
// Set the isolation level so that we see a snapshot of the database.
|
// Set the isolation level so that we see a snapshot of the database.
|
||||||
// In PostgreSQL repeatable read transactions will see a snapshot taken
|
// In PostgreSQL repeatable read transactions will see a snapshot taken
|
||||||
|
|
@ -72,6 +79,7 @@ func (d *Database) NewDatabaseSnapshot(ctx context.Context) (*DatabaseTransactio
|
||||||
Database: d,
|
Database: d,
|
||||||
txn: txn,
|
txn: txn,
|
||||||
}, nil
|
}, nil
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Database) NewDatabaseTransaction(ctx context.Context) (*DatabaseTransaction, error) {
|
func (d *Database) NewDatabaseTransaction(ctx context.Context) (*DatabaseTransaction, error) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue