From bb488d2e68fb928bd1e862cb51a58baa0e828e7f Mon Sep 17 00:00:00 2001
From: Adriaan Renting <renting@astron.nl>
Date: Fri, 27 Nov 2015 11:51:54 +0000
Subject: [PATCH] Task #8481: fixed single and double quotes

---
 .../sql/add_resource_allocation_statics.sql                 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/SAS/ResourceAssignment/ResourceAllocationDatabase/sql/add_resource_allocation_statics.sql b/SAS/ResourceAssignment/ResourceAllocationDatabase/sql/add_resource_allocation_statics.sql
index 8ef850f3597..5ffb8310f0b 100644
--- a/SAS/ResourceAssignment/ResourceAllocationDatabase/sql/add_resource_allocation_statics.sql
+++ b/SAS/ResourceAssignment/ResourceAllocationDatabase/sql/add_resource_allocation_statics.sql
@@ -2,9 +2,9 @@
 -- psql resourceassignment -U resourceassignment -f fill_database.sql -W
 BEGIN;
 
-INSERT INTO resource_allocation.task_status VALUES (200, "prepared"), (300, "approved"), (320, "on_hold"), (335, "conflict"),
-(350, "prescheduled"), (400, "scheduled"), (500, "queued"), (600, "active"), (900, "completing"), (1000, "finished"), (1100, "aborted"),
-(1150, "error"), (1200, "obsolete"); -- This is the list from OTDB, we'll need to merge it with the list from MoM in the future, might use different indexes?
+INSERT INTO resource_allocation.task_status VALUES (200, 'prepared'), (300, 'approved'), (320, 'on_hold'), (335, 'conflict'),
+(350, 'prescheduled'), (400, 'scheduled'), (500, 'queued'), (600, 'active'), (900, 'completing'), (1000, 'finished'), (1100, 'aborted'),
+(1150, 'error'), (1200, 'obsolete'); -- This is the list from OTDB, we'll need to merge it with the list from MoM in the future, might use different indexes?
 INSERT INTO resource_allocation.task_type VALUES (0, 'OBSERVATION'),(1, 'PIPELINE'); -- We'll need more types
 INSERT INTO resource_allocation.resource_claim_status VALUES (0, 'CLAIMED'), (1, 'ALLOCATED'), (2, 'CONFLICT');
 INSERT INTO resource_allocation.config VALUES (0, 'max_fill_percentage_cep4', '85.00'), (1, 'claim_timeout', '172800'); -- Just some values 172800 is two days in seconds
-- 
GitLab