Changeset: df9bda849f4b for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/df9bda849f4b
Modified Files:
monetdb5/modules/atoms/str.c
Branch: sw_ew_c_sorting
Log Message:
COLnew needs to be called with the same size
diffs (12 lines):
diff --git a/monetdb5/modules/atoms/str.c b/monetdb5/modules/atoms/str.c
--- a/monetdb5/modules/atoms/str.c
+++ b/monetdb5/modules/atoms/str.c
@@ -6158,7 +6158,7 @@ STRjoin(bat *rl_id, bat *rr_id, const ba
rl = COLnew(0, TYPE_oid, BATcount(l), TRANSIENT);
if (rr_id)
- rr = COLnew(0, TYPE_oid, BATcount(r), TRANSIENT);
+ rr = COLnew(0, TYPE_oid, BATcount(l), TRANSIENT);
if (!rl || (rr_id && !rr)) {
BBPnreclaim(6, l, r, cl, cr, rl, rr);
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]