mirror of https://github.com/jackc/pgx.git
Remove initially deferred when not needed
Makes test compatible with CockroachDB.pull/955/head
parent
c8a7c89f15
commit
2f95f67ef5
10
tx_test.go
10
tx_test.go
|
@ -20,7 +20,7 @@ func TestTransactionSuccessfulCommit(t *testing.T) {
|
||||||
createSql := `
|
createSql := `
|
||||||
create temporary table foo(
|
create temporary table foo(
|
||||||
id integer,
|
id integer,
|
||||||
unique (id) initially deferred
|
unique (id)
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ func TestTxCommitWhenTxBroken(t *testing.T) {
|
||||||
createSql := `
|
createSql := `
|
||||||
create temporary table foo(
|
create temporary table foo(
|
||||||
id integer,
|
id integer,
|
||||||
unique (id) initially deferred
|
unique (id)
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
|
@ -205,7 +205,7 @@ func TestTransactionSuccessfulRollback(t *testing.T) {
|
||||||
createSql := `
|
createSql := `
|
||||||
create temporary table foo(
|
create temporary table foo(
|
||||||
id integer,
|
id integer,
|
||||||
unique (id) initially deferred
|
unique (id)
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
|
@ -368,7 +368,7 @@ func TestTxNestedTransactionCommit(t *testing.T) {
|
||||||
createSql := `
|
createSql := `
|
||||||
create temporary table foo(
|
create temporary table foo(
|
||||||
id integer,
|
id integer,
|
||||||
unique (id) initially deferred
|
unique (id)
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
|
@ -440,7 +440,7 @@ func TestTxNestedTransactionRollback(t *testing.T) {
|
||||||
createSql := `
|
createSql := `
|
||||||
create temporary table foo(
|
create temporary table foo(
|
||||||
id integer,
|
id integer,
|
||||||
unique (id) initially deferred
|
unique (id)
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue