We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53350ce commit e72acbaCopy full SHA for e72acba
.circleci/config.yml
@@ -78,7 +78,7 @@ jobs:
78
sleep 1
79
node tests/websocket_client.js &> logs/client.log &
80
81
- psql postgres://test:test@localhost/test < tests/sql/test_upsert.sql
+ psql postgres://test:test@localhost/test < tests/sql/test_insert.sql
82
83
[[ $(jq -r .row.text < logs/client.log) == "Hello world" ]]
84
- store_artifacts:
tests/sql/setup_2_table.sql
@@ -1,4 +1,4 @@
1
CREATE TABLE IF NOT EXISTS mytable (
2
- uid integer PRIMARY KEY,
+ uid SERIAL PRIMARY KEY,
3
text varchar(140)
4
);
tests/sql/test_insert.sql
@@ -0,0 +1 @@
+INSERT INTO mytable (text) VALUES ('Hello world');
tests/sql/test_upsert.sql
0 commit comments