2
0

Bring stdlib iso change from v3

This commit is contained in:
Jack Christensen
2019-08-08 15:35:30 -05:00
parent faa980a256
commit 5eae85194e
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -565,6 +565,7 @@ func TestConnBeginTxIsolation(t *testing.T) {
{sqlIso: sql.LevelDefault, pgIso: defaultIsoLevel},
{sqlIso: sql.LevelReadUncommitted, pgIso: "read uncommitted"},
{sqlIso: sql.LevelReadCommitted, pgIso: "read committed"},
{sqlIso: sql.LevelRepeatableRead, pgIso: "repeatable read"},
{sqlIso: sql.LevelSnapshot, pgIso: "repeatable read"},
{sqlIso: sql.LevelSerializable, pgIso: "serializable"},
}