Fix spec test concurrency issue related to tx=commit on simple_pk
This commit is contained in:
@@ -421,7 +421,7 @@ spec actualPgVersion = do
|
|||||||
context "with unicode values" $
|
context "with unicode values" $
|
||||||
it "succeeds and returns usable location header" $ do
|
it "succeeds and returns usable location header" $ do
|
||||||
let payload = [json| { "k":"圍棋", "extra":"¥" } |]
|
let payload = [json| { "k":"圍棋", "extra":"¥" } |]
|
||||||
p <- request methodPost "/simple_pk?select=extra,k"
|
p <- request methodPost "/simple_pk2?select=extra,k"
|
||||||
[("Prefer", "tx=commit"), ("Prefer", "return=representation")]
|
[("Prefer", "tx=commit"), ("Prefer", "return=representation")]
|
||||||
payload
|
payload
|
||||||
liftIO $ do
|
liftIO $ do
|
||||||
|
|||||||
Vendored
+1
@@ -38,6 +38,7 @@ GRANT ALL ON TABLE
|
|||||||
, projects_view
|
, projects_view
|
||||||
, projects_view_alt
|
, projects_view_alt
|
||||||
, simple_pk
|
, simple_pk
|
||||||
|
, simple_pk2
|
||||||
, tasks
|
, tasks
|
||||||
, filtered_tasks
|
, filtered_tasks
|
||||||
, tsearch
|
, tsearch
|
||||||
|
|||||||
Vendored
+6
@@ -666,6 +666,12 @@ CREATE TABLE simple_pk (
|
|||||||
extra character varying NOT NULL
|
extra character varying NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE simple_pk2 (
|
||||||
|
PRIMARY KEY (k),
|
||||||
|
k character varying NOT NULL,
|
||||||
|
extra character varying NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE users (
|
CREATE TABLE users (
|
||||||
id integer primary key,
|
id integer primary key,
|
||||||
name text NOT NULL
|
name text NOT NULL
|
||||||
|
|||||||
Reference in New Issue
Block a user