Skip to content

Commit

Permalink
adding some more ts tests
Browse files Browse the repository at this point in the history
  • Loading branch information
korry8911 committed Nov 30, 2016
1 parent a2d71d6 commit 59081ce
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions priv/sql/199-add-reported-and-not-exiting.sql
@@ -0,0 +1,12 @@
BEGIN;
WITH newtests as (INSERT INTO tests (name, platform, backend) VALUES

('ts_cluster_overload_reported','centos-6-64','eleveldb'),
('ts_simple_select_table_not_existing','centos-6-64','eleveldb')
RETURNING id)

INSERT INTO projects_tests (project_id, test_id)
SELECT projects.id, newtests.id FROM projects, newtests
WHERE projects.name IN ('riak_ts','riak_ts_ee');

COMMIT;

0 comments on commit 59081ce

Please sign in to comment.