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 2014/10/06 12:32:20 UTC

git commit: remove CREATE EXTENSION from postgres setup script, because it requires super user privileges; users have to run this manually if they want to use SPARQL crypto functions

Repository: marmotta
Updated Branches:
  refs/heads/develop 22644d0e0 -> 35b98edc7


remove CREATE EXTENSION from postgres setup script, because it requires super user privileges; users have to run this manually if they want to use SPARQL crypto functions


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

Branch: refs/heads/develop
Commit: 35b98edc77bec426f4cf10aa199580c79ec25a8e
Parents: 22644d0
Author: Sebastian Schaffert <ss...@apache.org>
Authored: Mon Oct 6 12:32:46 2014 +0200
Committer: Sebastian Schaffert <ss...@apache.org>
Committed: Mon Oct 6 12:32:46 2014 +0200

----------------------------------------------------------------------
 .../apache/marmotta/kiwi/persistence/pgsql/create_base_tables.sql | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/35b98edc/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/create_base_tables.sql
----------------------------------------------------------------------
diff --git a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/create_base_tables.sql b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/create_base_tables.sql
index 844005f..06b422f 100644
--- a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/create_base_tables.sql
+++ b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/create_base_tables.sql
@@ -14,7 +14,8 @@
 -- limitations under the License.
 CREATE TYPE nodetype AS ENUM ('uri','bnode','string','int','double','date','boolean');
 
-CREATE EXTENSION IF NOT EXISTS pgcrypto;
+-- requires super user privileges:
+-- CREATE EXTENSION IF NOT EXISTS pgcrypto;
 
 CREATE TABLE nodes (
   id        bigint     NOT NULL,