summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/backend/statistics/relation_stats.c8
-rw-r--r--src/backend/statistics/stat_utils.c10
2 files changed, 7 insertions, 11 deletions
diff --git a/src/backend/statistics/relation_stats.c b/src/backend/statistics/relation_stats.c
index 2c1cea3fc80..52dfa477187 100644
--- a/src/backend/statistics/relation_stats.c
+++ b/src/backend/statistics/relation_stats.c
@@ -127,13 +127,7 @@ relation_statistics_update(FunctionCallInfo fcinfo)
ctup = SearchSysCache1(RELOID, ObjectIdGetDatum(reloid));
if (!HeapTupleIsValid(ctup))
- {
- ereport(WARNING,
- (errcode(ERRCODE_OBJECT_IN_USE),
- errmsg("pg_class entry for relid %u not found", reloid)));
- table_close(crel, RowExclusiveLock);
- return false;
- }
+ elog(ERROR, "pg_class entry for relid %u not found", reloid);
pgcform = (Form_pg_class) GETSTRUCT(ctup);
diff --git a/src/backend/statistics/stat_utils.c b/src/backend/statistics/stat_utils.c
index 54ead90b5bb..9647f5108b3 100644
--- a/src/backend/statistics/stat_utils.c
+++ b/src/backend/statistics/stat_utils.c
@@ -136,12 +136,14 @@ stats_lock_check_privileges(Oid reloid)
/*
* For indexes, we follow the locking behavior in do_analyze_rel() and
- * check_inplace_rel_lock(), which is to lock the table first in
- * ShareUpdateExclusive mode and then the index in AccessShare mode.
+ * check_lock_if_inplace_updateable_rel(), which is to lock the table
+ * first in ShareUpdateExclusive mode and then the index in AccessShare
+ * mode.
*
* Partitioned indexes are treated differently than normal indexes in
- * check_inplace_rel_lock(), so we take a ShareUpdateExclusive lock on
- * both the partitioned table and the partitioned index.
+ * check_lock_if_inplace_updateable_rel(), so we take a
+ * ShareUpdateExclusive lock on both the partitioned table and the
+ * partitioned index.
*/
switch (get_rel_relkind(reloid))
{