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

merged with Dec2016


diffs (26 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
@@ -1308,19 +1308,19 @@ rel_read(mvc *sql, char *r, int *pos, li
                rel->exps = exps;
                return rel;
        case 'u':
-               if (j != op_basetable) {
+               if (j == op_basetable) {
                        *pos += (int) strlen("union");
                        j = op_union;
                }
                /* fall through */
        case 'i':
-               if (j != op_basetable) {
+               if (j == op_basetable) {
                        *pos += (int) strlen("intersect");
                        j = op_inter;
                }
                /* fall through */
        case 'e':
-               if (j != op_basetable) {
+               if (j == op_basetable) {
                        *pos += (int) strlen("except");
                        j = op_except;
                }
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to