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

mergejoin(): add cast to fix compilation on 64-bit Windows with 32-bit OIDs


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
@@ -1223,7 +1223,7 @@ mergejoin(BAT *r1, BAT *r2, BAT *l, BAT 
                         * we're at the end of r, v is NULL */
                        if (v == NULL) {
                                if (lcand) {
-                                       nlx = lcandend - lcand;
+                                       nlx = (BUN) (lcandend - lcand);
                                        lcand = lcandend;
                                } else {
                                        nlx = lend - lstart;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to