Changeset: c09365ca2494 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c09365ca2494
Modified Files:
        gdk/gdk_string.c
Branch: statistics-analytics
Log Message:

Compilation fixes


diffs (39 lines):

diff --git a/gdk/gdk_string.c b/gdk/gdk_string.c
--- a/gdk/gdk_string.c
+++ b/gdk/gdk_string.c
@@ -1232,7 +1232,7 @@ GDKanalytical_str_group_concat(BAT *r, B
                next_group_length = next_length = offset = 0;
 
                for (j = start[i]; j < l; j++) {
-                       sb = BUNtvar(bi, j);
+                       sb = BUNtvar(bi, (BUN) j);
 
                        if (separator) {
                                if (!GDK_STRNIL(sb)) {
@@ -1242,7 +1242,7 @@ GDKanalytical_str_group_concat(BAT *r, B
                                        empty = false;
                                }
                        } else { /* sep case */
-                               sl = BUNtvar(bis, j);
+                               sl = BUNtvar(bis, (BUN) j);
 
                                if (!GDK_STRNIL(sb)) {
                                        next_group_length += strlen(sb);
@@ -1267,7 +1267,7 @@ GDKanalytical_str_group_concat(BAT *r, B
                }
 
                for (j = start[i]; j < l; j++) {
-                       sb = BUNtvar(bi, j);
+                       sb = BUNtvar(bi, (BUN) j);
 
                        if (separator) {
                                if (GDK_STRNIL(sb))
@@ -1281,7 +1281,7 @@ GDKanalytical_str_group_concat(BAT *r, B
                                offset += next_length;
                                empty = false;
                        } else { /* sep case */
-                               sl = BUNtvar(bis, j);
+                               sl = BUNtvar(bis, (BUN) j);
 
                                if (GDK_STRNIL(sb))
                                        continue;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to