Skip to content

Commit

Permalink
Merge pull request #466 from mgcam/db_data_update_fix
Browse files Browse the repository at this point in the history
error in a statement for data update is fixed
  • Loading branch information
jmtcsngr authored Oct 26, 2017
2 parents 4bf5570 + f9cb933 commit 8f56d63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
LIST OF CHANGES FOR NPG-QC PACKAGE

release 64.3.1
- error in a statement for data update is fixed

release 64.3
- DBIx schema loader script: automatically add npg_qc::Schema::Composition
- drop unique consctraint for (id_run, position and tag_index) columns;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ SHOW ERRORS;
SHOW WARNINGS;
SELECT 'mqc_library_outcome_ent', @@warning_count, @@error_count;

UPDATE mqc_library_outcome_ent SET tag_index = NULL WHERE tag_index = -1;
UPDATE mqc_library_outcome_hist SET tag_index = NULL WHERE tag_index = -1;
SHOW ERRORS;
SHOW WARNINGS;
SELECT 'mqc_library_outcome_hist', @@warning_count, @@error_count;

0 comments on commit 8f56d63

Please sign in to comment.