Add SRID support Modify load geometry literal in statements.properties Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/85d33616 Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/85d33616 Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/85d33616
Branch: refs/heads/MARMOTTA-584 Commit: 85d33616bcc873cf18bfba257532c4261877f195 Parents: 2ec3e91 Author: cuent <[email protected]> Authored: Thu Aug 13 00:12:23 2015 -0500 Committer: cuent <[email protected]> Committed: Thu Aug 13 00:12:23 2015 -0500 ---------------------------------------------------------------------- .../apache/marmotta/kiwi/persistence/pgsql/statements.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/85d33616/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/statements.properties ---------------------------------------------------------------------- diff --git a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/statements.properties b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/statements.properties index b0ce1e8..a738d90 100644 --- a/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/statements.properties +++ b/libraries/kiwi/kiwi-triplestore/src/main/resources/org/apache/marmotta/kiwi/persistence/pgsql/statements.properties @@ -57,7 +57,7 @@ store.dliteral = INSERT INTO nodes (id,ntype,svalue,dvalue,ltype,createdAt store.bliteral = INSERT INTO nodes (id,ntype,svalue,bvalue,ltype,createdAt) VALUES (?,'boolean',?,?,?,?) store.tliteral = INSERT INTO nodes (id,ntype,svalue,tvalue,tzoffset,ltype,createdAt) VALUES (?,'date',?,?,?,?,?) -store.gliteral = INSERT INTO nodes (id,ntype,svalue,dvalue,ivalue,lang,ltype,createdAt,gvalue) VALUES (?,'geom',?,?,?,?,?,?,ST_GeomFromText(?)) +store.gliteral = INSERT INTO nodes (id,ntype,svalue,dvalue,ivalue,lang,ltype,createdAt,gvalue) VALUES (?,'geom',?,?,?,?,?,?,ST_GeomFromText(?,?)) store.namespace = INSERT INTO namespaces (id,prefix,uri,createdAt) VALUES (?,?,?,?)
