Changeset: 834b9795aa08 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=834b9795aa08
Modified Files:
        gdk/gdk_join.c
Branch: Jul2015
Log Message:

When a candidate list is non-dense, the join result likely is too.
This fixes bug 3828.


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
@@ -1074,6 +1074,8 @@ mergejoin(BAT *r1, BAT *r2, BAT *l, BAT 
 
        if (sl)
                r1->tdense = sl->tdense;
+       if (sr)
+               r2->tdense = sr->tdense;
        while (lcand ? lcand < lcandend : lstart < lend) {
                if (!nil_on_miss && !must_match && lscan > 0) {
                        /* If l is sorted (lscan > 0), we look at the
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to