mirror of
https://github.com/postgres/postgres.git
synced 2025-05-23 00:02:38 -04:00
Fix typo in _outArrayRef().
This commit is contained in:
parent
7ffd7daddb
commit
fea7ab5298
@ -5,7 +5,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: outfuncs.c,v 1.89 1999/07/17 20:17:07 momjian Exp $
|
* $Id: outfuncs.c,v 1.90 1999/07/18 19:02:49 tgl Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* Every (plan) node in POSTGRES has an associated "out" routine which
|
* Every (plan) node in POSTGRES has an associated "out" routine which
|
||||||
@ -718,7 +718,7 @@ static void
|
|||||||
_outArrayRef(StringInfo str, ArrayRef *node)
|
_outArrayRef(StringInfo str, ArrayRef *node)
|
||||||
{
|
{
|
||||||
appendStringInfo(str,
|
appendStringInfo(str,
|
||||||
" ARRAYREF :refelemtype %u :refattrlength $d :refelemlength %d ",
|
" ARRAYREF :refelemtype %u :refattrlength %d :refelemlength %d ",
|
||||||
node->refelemtype,
|
node->refelemtype,
|
||||||
node->refattrlength,
|
node->refattrlength,
|
||||||
node->refelemlength);
|
node->refelemlength);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user