diff options
Diffstat (limited to 'src/backend/commands/tsearchcmds.c')
-rw-r--r-- | src/backend/commands/tsearchcmds.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/commands/tsearchcmds.c b/src/backend/commands/tsearchcmds.c index 988930b1c55..49668be0d70 100644 --- a/src/backend/commands/tsearchcmds.c +++ b/src/backend/commands/tsearchcmds.c @@ -301,7 +301,7 @@ RemoveTSParserById(Oid prsId) if (!HeapTupleIsValid(tup)) elog(ERROR, "cache lookup failed for text search parser %u", prsId); - simple_heap_delete(relation, &tup->t_self); + CatalogTupleDelete(relation, &tup->t_self); ReleaseSysCache(tup); @@ -511,7 +511,7 @@ RemoveTSDictionaryById(Oid dictId) elog(ERROR, "cache lookup failed for text search dictionary %u", dictId); - simple_heap_delete(relation, &tup->t_self); + CatalogTupleDelete(relation, &tup->t_self); ReleaseSysCache(tup); @@ -831,7 +831,7 @@ RemoveTSTemplateById(Oid tmplId) elog(ERROR, "cache lookup failed for text search template %u", tmplId); - simple_heap_delete(relation, &tup->t_self); + CatalogTupleDelete(relation, &tup->t_self); ReleaseSysCache(tup); @@ -1139,7 +1139,7 @@ RemoveTSConfigurationById(Oid cfgId) elog(ERROR, "cache lookup failed for text search dictionary %u", cfgId); - simple_heap_delete(relCfg, &tup->t_self); + CatalogTupleDelete(relCfg, &tup->t_self); ReleaseSysCache(tup); @@ -1158,7 +1158,7 @@ RemoveTSConfigurationById(Oid cfgId) while (HeapTupleIsValid((tup = systable_getnext(scan)))) { - simple_heap_delete(relMap, &tup->t_self); + CatalogTupleDelete(relMap, &tup->t_self); } systable_endscan(scan); @@ -1317,7 +1317,7 @@ MakeConfigurationMapping(AlterTSConfigurationStmt *stmt, while (HeapTupleIsValid((maptup = systable_getnext(scan)))) { - simple_heap_delete(relMap, &maptup->t_self); + CatalogTupleDelete(relMap, &maptup->t_self); } systable_endscan(scan); @@ -1472,7 +1472,7 @@ DropConfigurationMapping(AlterTSConfigurationStmt *stmt, while (HeapTupleIsValid((maptup = systable_getnext(scan)))) { - simple_heap_delete(relMap, &maptup->t_self); + CatalogTupleDelete(relMap, &maptup->t_self); found = true; } |