Skip to content

Commit

Permalink
Invalid parameters in results schema
Browse files Browse the repository at this point in the history
  • Loading branch information
wivern authored and chrisknoll committed Mar 27, 2018
1 parent 9296520 commit a4058f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IF OBJECT_ID('@results_schema.feas_study_inclusion_stats', 'U') IS NULL
CREATE TABLE $results_schema.feas_study_inclusion_stats(
CREATE TABLE @results_schema.feas_study_inclusion_stats(
study_id int NOT NULL,
rule_sequence int NOT NULL,
name varchar(255) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ddl/results/feas_study_index_stats.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IF OBJECT_ID('@results_schema.feas_study_index_stats', 'U') IS NULL
CREATE TABLE $results_schema.feas_study_index_stats(
CREATE TABLE @results_schema.feas_study_index_stats(
study_id int NOT NULL,
person_count bigint NOT NULL,
match_count bigint NOT NULL
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ddl/results/feas_study_result.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IF OBJECT_ID('@results_schema.feas_study_result', 'U') IS NULL
CREATE TABLE $results_schema.feas_study_result(
CREATE TABLE @results_schema.feas_study_result(
study_id int NOT NULL,
inclusion_rule_mask bigint NOT NULL,
person_count bigint NOT NULL
Expand Down

0 comments on commit a4058f5

Please sign in to comment.