Skip to content
Snippets Groups Projects
Commit 9aa53bbd authored by Tom Lane's avatar Tom Lane
Browse files

Remove unused variable.

Per buildfarm.
parent 692bd09a
No related branches found
No related tags found
No related merge requests found
......@@ -138,8 +138,7 @@ array_prepend(PG_FUNCTION_ARGS)
Datum newelem;
bool isNull;
ArrayType *result;
int *dimv,
*lb;
int *lb;
int indx;
ArrayMetaState *my_extra;
......@@ -154,7 +153,6 @@ array_prepend(PG_FUNCTION_ARGS)
{
/* prepend newelem */
lb = ARR_LBOUND(v);
dimv = ARR_DIMS(v);
indx = lb[0] - 1;
/* overflow? */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment