Changeset: 791529b32630 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=791529b32630
Modified Files:
        sql/server/rel_rel.c
Branch: default
Log Message:

Use sqlid


diffs (21 lines):

diff --git a/sql/server/rel_rel.c b/sql/server/rel_rel.c
--- a/sql/server/rel_rel.c
+++ b/sql/server/rel_rel.c
@@ -1565,7 +1565,7 @@ exps_deps(mvc *sql, list *exps, list *re
 }
 
 static int
-id_cmp(int *id1, int *id2)
+id_cmp(sqlid *id1, sqlid *id2)
 {
        if (*id1 == *id2)
                return 0;
@@ -1573,7 +1573,7 @@ id_cmp(int *id1, int *id2)
 }
 
 static list *
-cond_append(list *l, int *id)
+cond_append(list *l, sqlid *id)
 {
        if (*id >= FUNC_OIDS && !list_find(l, id, (fcmp) &id_cmp))
                 list_append(l, id);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to