You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by ss...@apache.org on 2013/05/26 14:43:20 UTC

git commit: also do not drop the non-existant indexes

Updated Branches:
  refs/heads/develop be516c94e -> 93e1f2eda


also do not drop the non-existant indexes


Project: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/commit/93e1f2ed
Tree: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/tree/93e1f2ed
Diff: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/diff/93e1f2ed

Branch: refs/heads/develop
Commit: 93e1f2edaafb476edbcc8ba17f4e87598d089f96
Parents: be516c9
Author: Sebastian Schaffert <ss...@apache.org>
Authored: Sun May 26 14:43:15 2013 +0200
Committer: Sebastian Schaffert <ss...@apache.org>
Committed: Sun May 26 14:43:15 2013 +0200

----------------------------------------------------------------------
 .../kiwi/persistence/h2/drop_base_tables.sql       |    8 ++++----
 .../kiwi/persistence/mysql/drop_base_tables.sql    |    8 ++++----
 .../kiwi/persistence/pgsql/drop_base_tables.sql    |    8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/93e1f2ed/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/h2/drop_base_tables.sql
----------------------------------------------------------------------
diff --git a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/h2/drop_base_tables.sql b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/h2/drop_base_tables.sql
index bf3d7e4..7361db3 100644
--- a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/h2/drop_base_tables.sql
+++ b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/h2/drop_base_tables.sql
@@ -16,13 +16,13 @@
 DROP INDEX IF EXISTS idx_node_content;
 DROP INDEX IF EXISTS idx_literal_lang;
 
-DROP INDEX IF EXISTS idx_triples_s;
+-- DROP INDEX IF EXISTS idx_triples_s;
 DROP INDEX IF EXISTS idx_triples_o;
-DROP INDEX IF EXISTS idx_triples_sp;
+-- DROP INDEX IF EXISTS idx_triples_sp;
 DROP INDEX IF EXISTS idx_triples_po;
 DROP INDEX IF EXISTS idx_triples_spo;
-DROP INDEX IF EXISTS idx_triples_cs;
-DROP INDEX IF EXISTS idx_triples_csp;
+-- DROP INDEX IF EXISTS idx_triples_cs;
+-- DROP INDEX IF EXISTS idx_triples_csp;
 DROP INDEX IF EXISTS idx_triples_cspo;
 
 DROP INDEX IF EXISTS idx_namespaces_uri;

http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/93e1f2ed/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/mysql/drop_base_tables.sql
----------------------------------------------------------------------
diff --git a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/mysql/drop_base_tables.sql b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/mysql/drop_base_tables.sql
index fb16fcd..3291a73 100644
--- a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/mysql/drop_base_tables.sql
+++ b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/mysql/drop_base_tables.sql
@@ -16,13 +16,13 @@
 DROP INDEX idx_node_content ON nodes;
 DROP INDEX idx_literal_lang ON nodes;
 
-DROP INDEX idx_triples_s ON triples;
+-- DROP INDEX idx_triples_s ON triples;
 DROP INDEX idx_triples_o ON triples;
-DROP INDEX idx_triples_sp ON triples;
+-- DROP INDEX idx_triples_sp ON triples;
 DROP INDEX idx_triples_po ON triples;
 DROP INDEX idx_triples_spo ON triples;
-DROP INDEX idx_triples_cs ON triples;
-DROP INDEX idx_triples_csp ON triples;
+-- DROP INDEX idx_triples_cs ON triples;
+-- DROP INDEX idx_triples_csp ON triples;
 DROP INDEX idx_triples_cspo ON triples;
 
 DROP INDEX idx_namespaces_uri ON namespaces;

http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/93e1f2ed/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/drop_base_tables.sql
----------------------------------------------------------------------
diff --git a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/drop_base_tables.sql b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/drop_base_tables.sql
index e3199b8..e978660 100644
--- a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/drop_base_tables.sql
+++ b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/drop_base_tables.sql
@@ -15,13 +15,13 @@
 DROP INDEX idx_node_content;
 DROP INDEX idx_literal_lang;
 
-DROP INDEX idx_triples_s;
+-- DROP INDEX idx_triples_s;
 DROP INDEX idx_triples_o;
-DROP INDEX idx_triples_sp;
+-- DROP INDEX idx_triples_sp;
 DROP INDEX idx_triples_po;
 DROP INDEX idx_triples_spo;
-DROP INDEX idx_triples_cs;
-DROP INDEX idx_triples_csp;
+-- DROP INDEX idx_triples_cs;
+-- DROP INDEX idx_triples_csp;
 DROP INDEX idx_triples_cspo;
 
 DROP INDEX idx_namespaces_uri;