Changeset: f39f3464c616 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/f39f3464c616
Modified Files:
        gdk/gdk_join.c
Branch: Jun2023
Log Message:

Fix the assert.


diffs (12 lines):

diff --git a/gdk/gdk_join.c b/gdk/gdk_join.c
--- a/gdk/gdk_join.c
+++ b/gdk/gdk_join.c
@@ -1824,7 +1824,7 @@ mergejoin(BAT **r1p, BAT **r2p, BAT *l, 
                lvars = li.vh->base;
                rvars = ri.vh->base;
        } else {
-               assert(ri.vh == NULL);
+               assert(ri.vh == NULL || ri.type == TYPE_void);
                lvars = rvars = NULL;
        }
        /* if the var pointer is not NULL, then so is the val pointer */
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to