Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
148c00ac
Commit
148c00ac
authored
Sep 16, 2005
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update two comments to refer to use the new list API names.
parent
b09bfc65
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/utils/adt/varlena.c
src/backend/utils/adt/varlena.c
+2
-2
src/backend/utils/cache/relcache.c
src/backend/utils/cache/relcache.c
+2
-2
No files found.
src/backend/utils/adt/varlena.c
View file @
148c00ac
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/varlena.c,v 1.13
3 2005/08/26 17:40:36 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/varlena.c,v 1.13
4 2005/09/16 04:13:17 neilc
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -1727,7 +1727,7 @@ textToQualifiedNameList(text *textval)
...
@@ -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.
*
*
...
...
src/backend/utils/cache/relcache.c
View file @
148c00ac
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/cache/relcache.c,v 1.22
8 2005/08/26 03:07:48 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/utils/cache/relcache.c,v 1.22
9 2005/09/16 04:13:18 neilc
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -2514,7 +2514,7 @@ CheckConstraintFetch(Relation relation)
...
@@ -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!
*
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment