1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Update comments overlooked by 2f5c9d9c9c.

Tomas Vondra
This commit is contained in:
Robert Haas
2017-03-02 17:03:50 +05:30
parent 7f3112135e
commit fa42b2005f
2 changed files with 7 additions and 9 deletions

View File

@ -100,10 +100,8 @@
adding/deleting caches only requires a recompile.)
Finally, any place your relation gets heap_insert() or
heap_update() calls, make sure there is a CatalogUpdateIndexes() or
similar call. The heap_* calls do not update indexes.
bjm 1999/11/22
heap_update() calls, use CatalogTupleInsert() or CatalogTupleUpdate()
instead, which also update indexes. The heap_* calls do not do that.
*---------------------------------------------------------------------------
*/