2
0

Remove deferred from test tables where unneeded

This commit is contained in:
Jack Christensen
2021-02-27 09:56:29 -06:00
parent ff6ab48e00
commit 1e15bdc874
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -679,7 +679,7 @@ func TestTxBeginFuncNestedTransactionCommit(t *testing.T) {
drop table if exists pgxpooltx;
create temporary table pgxpooltx(
id integer,
unique (id) initially deferred
unique (id)
);
`
@@ -726,7 +726,7 @@ func TestTxBeginFuncNestedTransactionRollback(t *testing.T) {
drop table if exists pgxpooltx;
create temporary table pgxpooltx(
id integer,
unique (id) initially deferred
unique (id)
);
`