From ea83efa79c7d35c8889e1849dc2a604d7aef99cb Mon Sep 17 00:00:00 2001 From: krasimir Date: Fri, 4 Sep 2015 16:34:40 +0000 Subject: [PATCH] fix the metadata for sg databases --- src/runtime/c/sg/sg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/c/sg/sg.c b/src/runtime/c/sg/sg.c index c0f8f5dda..ea9199518 100644 --- a/src/runtime/c/sg/sg.c +++ b/src/runtime/c/sg/sg.c @@ -49,7 +49,7 @@ sg_open(const char *filename, rc = sqlite3_exec(db, "create table if not exists " SG_EXPRS "(fun not null, arg integer);" "create unique index if not exists " SG_IDENTS " on " SG_EXPRS "(fun) where arg is null;" "create unique index if not exists " SG_LITERALS " on " SG_EXPRS "(fun) where arg = 0;" - "create unique index if not exists " SG_PAIRS " on " SG_EXPRS "(fun,arg) where arg is not null;" + "create unique index if not exists " SG_PAIRS " on " SG_EXPRS "(fun,arg) where arg > 0;" "create table if not exists " SG_TRIPLES "(subj integer, pred integer, obj integer, state integer);" "create unique index if not exists " SG_TRIPLES_SPO " on " SG_TRIPLES "(subj,pred,obj);" "create index if not exists " SG_TRIPLES_PO " on " SG_TRIPLES "(pred,obj);"