Changeset: e4d2347bc654 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=e4d2347bc654
Modified Files:
        sql/server/rel_dump.c
Branch: default
Log Message:

rel_dump.c:1172: enumerated type mixed with another type

Perhaps this fixes it, although Intel compiler might complain about the
initial assignment now.


diffs (13 lines):

diff --git a/sql/server/rel_dump.c b/sql/server/rel_dump.c
--- a/sql/server/rel_dump.c
+++ b/sql/server/rel_dump.c
@@ -912,7 +912,8 @@
 {
        sql_rel *rel = NULL, *nrel, *lrel, *rrel;
        list *exps, *gexps;
-       int distinct = 0, j=0;
+       int distinct = 0;
+       operator_type j = 0;
 
        skipWS(r,pos);
        if (r[*pos] == 'd') {
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to