mirror of
https://github.com/postgres/postgres.git
synced 2025-06-08 22:02:03 +03:00
Update two comments to refer to use the new list API names.
This commit is contained in:
parent
b09bfc654d
commit
148c00acbb
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/adt/varlena.c,v 1.133 2005/08/26 17:40:36 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/adt/varlena.c,v 1.134 2005/09/16 04:13:17 neilc Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1727,7 +1727,7 @@ textToQualifiedNameList(text *textval)
|
|||||||
* identifiers.
|
* identifiers.
|
||||||
* Outputs:
|
* Outputs:
|
||||||
* namelist: filled with a palloc'd list of pointers to identifiers within
|
* namelist: filled with a palloc'd list of pointers to identifiers within
|
||||||
* rawstring. Caller should freeList() this even on error return.
|
* rawstring. Caller should list_free() this even on error return.
|
||||||
*
|
*
|
||||||
* Returns TRUE if okay, FALSE if there is a syntax error in the string.
|
* Returns TRUE if okay, FALSE if there is a syntax error in the string.
|
||||||
*
|
*
|
||||||
|
4
src/backend/utils/cache/relcache.c
vendored
4
src/backend/utils/cache/relcache.c
vendored
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/cache/relcache.c,v 1.228 2005/08/26 03:07:48 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/cache/relcache.c,v 1.229 2005/09/16 04:13:18 neilc Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -2514,7 +2514,7 @@ CheckConstraintFetch(Relation relation)
|
|||||||
*
|
*
|
||||||
* Since shared cache inval causes the relcache's copy of the list to go away,
|
* Since shared cache inval causes the relcache's copy of the list to go away,
|
||||||
* we return a copy of the list palloc'd in the caller's context. The caller
|
* we return a copy of the list palloc'd in the caller's context. The caller
|
||||||
* may freeList() the returned list after scanning it. This is necessary
|
* may list_free() the returned list after scanning it. This is necessary
|
||||||
* since the caller will typically be doing syscache lookups on the relevant
|
* since the caller will typically be doing syscache lookups on the relevant
|
||||||
* indexes, and syscache lookup could cause SI messages to be processed!
|
* indexes, and syscache lookup could cause SI messages to be processed!
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user