Changeset: b80ae257945f for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/b80ae257945f
Modified Files:
geom/monetdb5/geom.c
Branch: geo-update
Log Message:
Renames function
diffs (29 lines):
diff --git a/geom/monetdb5/geom.c b/geom/monetdb5/geom.c
--- a/geom/monetdb5/geom.c
+++ b/geom/monetdb5/geom.c
@@ -3406,7 +3406,7 @@ wkbExtractPointToCoordSeq(GEOSCoordSeq *
}
static str
-wkbMakeLineAggrArray2(wkb **outWKB, wkb **inWKB_array, int size) {
+wkbMakeLineAggrArray(wkb **outWKB, wkb **inWKB_array, int size) {
str msg = MAL_SUCCEED;
int i;
wkb *aWKB, *bWKB;
@@ -3535,14 +3535,14 @@ wkbMakeLineAggrSubGroupedCand(bat *outid
if (grp != lastGrp) {
if (lastGrp != (oid)-1) {
- msg = wkbMakeLineAggrArray2(&lines[lastGrp],
lineGroup, position);
+ msg = wkbMakeLineAggrArray(&lines[lastGrp],
lineGroup, position);
position = 0;
}
lastGrp = grp;
}
lineGroup[position++] = inWKB;
}
- msg = wkbMakeLineAggrArray2(&lines[lastGrp], lineGroup, position);
+ msg = wkbMakeLineAggrArray(&lines[lastGrp], lineGroup, position);
if (BUNappendmulti(out, lines, ngrp, false) != GDK_SUCCEED) {
//TODO Free out BAT
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]