mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 06:08:26 -04:00
Remove unused variable.
Per buildfarm.
This commit is contained in:
parent
692bd09ad1
commit
9aa53bbd15
1 changed files with 1 additions and 3 deletions
|
|
@ -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? */
|
||||
|
|
|
|||
Loading…
Reference in a new issue