mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
@ -195,7 +195,7 @@ g_int_compress(PG_FUNCTION_ARGS)
|
|||||||
min = (dr[i] - dr[i - 1]);
|
min = (dr[i] - dr[i - 1]);
|
||||||
cand = i;
|
cand = i;
|
||||||
}
|
}
|
||||||
memmove((void *) &dr[cand - 1], (void *) &dr[cand + 1], (len - cand - 1) * sizeof(int));
|
memmove((void *) &dr[cand - 1], (void *) &dr[cand + 1], (len - cand - 1) * sizeof(int32));
|
||||||
len -= 2;
|
len -= 2;
|
||||||
}
|
}
|
||||||
r = resize_intArrayType(r, len);
|
r = resize_intArrayType(r, len);
|
||||||
|
Reference in New Issue
Block a user