[open-ils-commits] [GIT] Evergreen ILS branch rel_3_4 updated. d9c87bd20efdffa32bc9efb16bf00a19174505bb

Evergreen Git git at git.evergreen-ils.org
Wed Feb 26 14:27:33 EST 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_3_4 has been updated
       via  d9c87bd20efdffa32bc9efb16bf00a19174505bb (commit)
      from  3f7fffffe9625d7caf3865ec9b16c88715942efc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d9c87bd20efdffa32bc9efb16bf00a19174505bb
Author: Chris Sharp <csharp at georgialibraries.org>
Date:   Fri Feb 21 13:58:15 2020 -0500

    LP#1863929 - Fix sample survey data.
    
    Since we enter the surveys, questions, and answers with specified ID values
    but don't set the values to one higher, testers were unable to enter survey
    data.
    
    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
    Signed-off-by: Bill Erickson <berickxx at gmail.com>

diff --git a/Open-ILS/tests/datasets/sql/surveys.sql b/Open-ILS/tests/datasets/sql/surveys.sql
index f45de8d441..c9c6566463 100644
--- a/Open-ILS/tests/datasets/sql/surveys.sql
+++ b/Open-ILS/tests/datasets/sql/surveys.sql
@@ -26,6 +26,10 @@ INSERT INTO action.survey_answer (id, question, answer) VALUES (16, 3, 'Redshirt
 INSERT INTO action.survey_answer (id, question, answer) VALUES (17, 3, 'TARDIS blue.');
 INSERT INTO action.survey_answer (id, question, answer) VALUES (18, 3, 'This is getting too silly - I quit.');
 
+SELECT SETVAL('action.survey_id_seq'::TEXT, 100);
+SELECT SETVAL('action.survey_question_id_seq'::TEXT, 100);
+SELECT SETVAL('action.survey_answer_id_seq'::TEXT, 100);
+
 /** for every user with an id not evenly divisible by 6, 
  *  add a randomized response for every question in the survey
  */

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/tests/datasets/sql/surveys.sql | 4 ++++
 1 file changed, 4 insertions(+)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list