Changeset: eed2b4626883 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/eed2b4626883 Modified Files: monetdb5/modules/atoms/str.c Branch: sw_ew_c_sorting Log Message:
use correct type for anti flag diffs (33 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 @@ -6337,7 +6337,8 @@ STRstartswithjoin(Client cntxt, MalBlkPt str msg = MAL_SUCCEED; bat *rl_id = NULL, *rr_id = NULL, *l_id = NULL, *r_id = NULL, - *cl_id = NULL, *cr_id = NULL, *ic_id = NULL, *anti = NULL; + *cl_id = NULL, *cr_id = NULL, *ic_id = NULL; + bit *anti = NULL; bool icase = false; STRJOIN_MAPARGS(stk, pci, rl_id, rr_id, l_id, r_id, cl_id, cr_id, ic_id, anti); @@ -6370,7 +6371,8 @@ STRendswithjoin(Client cntxt, MalBlkPtr str msg = MAL_SUCCEED; bat *rl_id = NULL, *rr_id = NULL, *l_id = NULL, *r_id = NULL, - *cl_id = NULL, *cr_id = NULL, *ic_id = NULL, *anti = NULL; + *cl_id = NULL, *cr_id = NULL, *ic_id = NULL; + bit *anti = NULL; bool icase = false; STRJOIN_MAPARGS(stk, pci, rl_id, rr_id, l_id, r_id, cl_id, cr_id, ic_id, anti); @@ -6402,7 +6404,8 @@ STRcontainsjoin(Client cntxt, MalBlkPtr str msg = MAL_SUCCEED; bat *rl_id = NULL, *rr_id = NULL, *l_id = NULL, *r_id = NULL, - *cl_id = NULL, *cr_id = NULL, *ic_id = NULL, *anti = NULL; + *cl_id = NULL, *cr_id = NULL, *ic_id = NULL; + bit *anti = NULL; bool icase = false; STRJOIN_MAPARGS(stk, pci, rl_id, rr_id, l_id, r_id, cl_id, cr_id, ic_id, anti); _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org