diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-24 00:58:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-24 00:58:48 +0000 |
commit | 95997e159b6d7a1e70b02b387a30dd27b421f0a3 (patch) | |
tree | 82e73a5ddae70540070ce2dbd59c0c0ac80d79f1 /src/backend/utils/cache/syscache.c | |
parent | bb10bf319eb301cdb5d11a5fb1709348754ac6b3 (diff) | |
download | postgresql-95997e159b6d7a1e70b02b387a30dd27b421f0a3.tar.gz postgresql-95997e159b6d7a1e70b02b387a30dd27b421f0a3.zip |
Rename heap_replace to heap_update.
Diffstat (limited to 'src/backend/utils/cache/syscache.c')
-rw-r--r-- | src/backend/utils/cache/syscache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/cache/syscache.c b/src/backend/utils/cache/syscache.c index e851c40d286..e14f27da8c9 100644 --- a/src/backend/utils/cache/syscache.c +++ b/src/backend/utils/cache/syscache.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.41 1999/11/22 17:56:32 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.42 1999/11/24 00:58:48 momjian Exp $ * * NOTES * These routines allow the parser/planner/executor to perform @@ -71,7 +71,7 @@ typedef HeapTuple (*ScanFunc) (); function names in the same order as the cache list for clarity. Finally, any place your relation gets heap_insert() or - heap_replace calls, include code to do a CatalogIndexInsert() to update + heap_update calls, include code to do a CatalogIndexInsert() to update the system indexes. The heap_* calls do not update indexes. bjm 1999/11/22 |