aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-11-19 22:34:55 +0000
committerGerrit Code Review <gerrit@onap.org>2018-11-19 22:34:55 +0000
commita8bb1f4f282f8606c62483c8724c4cc009ca833a (patch)
treee4cc3097bd72736b3006a88f832c3c5982cbb252
parentae96577be733847b8795f40ca36688ebc7e1c0f2 (diff)
parent2e44e349c3fd57c5b8eaaea85b81e31fe2b4a80d (diff)
Merge "Drop CDS tables only if they exist"
Former-commit-id: d2508a2bfb2bdbe891528d24e98663d39ab6d35c
-rw-r--r--installation/sdnc/src/main/resources/blueprint-processor.data.dump8
1 files changed, 4 insertions, 4 deletions
diff --git a/installation/sdnc/src/main/resources/blueprint-processor.data.dump b/installation/sdnc/src/main/resources/blueprint-processor.data.dump
index 5fd53cbd..9a19863c 100644
--- a/installation/sdnc/src/main/resources/blueprint-processor.data.dump
+++ b/installation/sdnc/src/main/resources/blueprint-processor.data.dump
@@ -4,10 +4,10 @@
SET FOREIGN_KEY_CHECKS=0;
-DROP TABLE sdnctl.CONFIG_RESOURCE_ASSIGNMENT_DATA;
-DROP TABLE sdnctl.CONFIG_RESOURCE;
-DROP TABLE sdnctl.CONFIG_RESOURCE_RELATION;
-DROP TABLE sdnctl.CONFIG_TRANSACTION_LOG;
+DROP TABLE IF EXISTS sdnctl.CONFIG_RESOURCE_ASSIGNMENT_DATA;
+DROP TABLE IF EXISTS sdnctl.CONFIG_RESOURCE;
+DROP TABLE IF EXISTS sdnctl.CONFIG_RESOURCE_RELATION;
+DROP TABLE IF EXISTS sdnctl.CONFIG_TRANSACTION_LOG;
SET FOREIGN_KEY_CHECKS=1;