Changeset: 115f4e10d57c for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/115f4e10d57c
Modified Files:
sql/server/rel_prop.c
Branch: new_rmt_opt
Log Message:
REMOTE prop dump only prints a list of uris (not tid)
diffs (12 lines):
diff --git a/sql/server/rel_prop.c b/sql/server/rel_prop.c
--- a/sql/server/rel_prop.c
+++ b/sql/server/rel_prop.c
@@ -144,7 +144,7 @@ propvalue2string(sql_allocator *sa, prop
for (node *n = ((list*)p->value.pval)->h; n; n =
n->next) {
tid_uri *tu = n->data;
if (tu->uri)
- offset += snprintf(buf + offset,
BUFSIZ, "[%d]%s\" ", tu->id, sql_escape_ident(sa, tu->uri));
+ offset += snprintf(buf + offset,
BUFSIZ, "%s ", sql_escape_ident(sa, tu->uri));
}
return sa_strdup(sa, buf);
}
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]