PostgreSQL Source Code  git master
pgstat_relation.c File Reference
#include "postgres.h"
#include "access/twophase_rmgr.h"
#include "access/xact.h"
#include "catalog/catalog.h"
#include "postmaster/autovacuum.h"
#include "utils/memutils.h"
#include "utils/pgstat_internal.h"
#include "utils/rel.h"
#include "utils/timestamp.h"
Include dependency graph for pgstat_relation.c:

Go to the source code of this file.

Data Structures

struct  TwoPhasePgStatRecord
 

Typedefs

typedef struct TwoPhasePgStatRecord TwoPhasePgStatRecord
 

Functions

static PgStat_TableStatuspgstat_prep_relation_pending (Oid rel_id, bool isshared)
 
static void add_tabstat_xact_level (PgStat_TableStatus *pgstat_info, int nest_level)
 
static void ensure_tabstat_xact_level (PgStat_TableStatus *pgstat_info)
 
static void save_truncdrop_counters (PgStat_TableXactStatus *trans, bool is_drop)
 
static void restore_truncdrop_counters (PgStat_TableXactStatus *trans)
 
void pgstat_copy_relation_stats (Relation dst, Relation src)
 
void pgstat_init_relation (Relation rel)
 
void pgstat_assoc_relation (Relation rel)
 
void pgstat_unlink_relation (Relation rel)
 
void pgstat_create_relation (Relation rel)
 
void pgstat_drop_relation (Relation rel)
 
void pgstat_report_vacuum (Oid tableoid, bool shared, PgStat_Counter livetuples, PgStat_Counter deadtuples)
 
void pgstat_report_analyze (Relation rel, PgStat_Counter livetuples, PgStat_Counter deadtuples, bool resetcounter)
 
void pgstat_count_heap_insert (Relation rel, PgStat_Counter n)
 
void pgstat_count_heap_update (Relation rel, bool hot, bool newpage)
 
void pgstat_count_heap_delete (Relation rel)
 
void pgstat_count_truncate (Relation rel)
 
void pgstat_update_heap_dead_tuples (Relation rel, int delta)
 
PgStat_StatTabEntrypgstat_fetch_stat_tabentry (Oid relid)
 
PgStat_StatTabEntrypgstat_fetch_stat_tabentry_ext (bool shared, Oid reloid)
 
PgStat_TableStatusfind_tabstat_entry (Oid rel_id)
 
void AtEOXact_PgStat_Relations (PgStat_SubXactStatus *xact_state, bool isCommit)
 
void AtEOSubXact_PgStat_Relations (PgStat_SubXactStatus *xact_state, bool isCommit, int nestDepth)
 
void AtPrepare_PgStat_Relations (PgStat_SubXactStatus *xact_state)
 
void PostPrepare_PgStat_Relations (PgStat_SubXactStatus *xact_state)
 
void pgstat_twophase_postcommit (TransactionId xid, uint16 info, void *recdata, uint32 len)
 
void pgstat_twophase_postabort (TransactionId xid, uint16 info, void *recdata, uint32 len)
 
bool pgstat_relation_flush_cb (PgStat_EntryRef *entry_ref, bool nowait)
 
void pgstat_relation_delete_pending_cb (PgStat_EntryRef *entry_ref)
 

Typedef Documentation

◆ TwoPhasePgStatRecord

Function Documentation

◆ add_tabstat_xact_level()

static void add_tabstat_xact_level ( PgStat_TableStatus pgstat_info,
int  nest_level 
)
static

Definition at line 917 of file pgstat_relation.c.

918 {
919  PgStat_SubXactStatus *xact_state;
921 
922  /*
923  * If this is the first rel to be modified at the current nest level, we
924  * first have to push a transaction stack entry.
925  */
926  xact_state = pgstat_get_xact_stack_level(nest_level);
927 
928  /* Now make a per-table stack entry */
931  sizeof(PgStat_TableXactStatus));
932  trans->nest_level = nest_level;
933  trans->upper = pgstat_info->trans;
934  trans->parent = pgstat_info;
935  trans->next = xact_state->first;
936  xact_state->first = trans;
937  pgstat_info->trans = trans;
938 }
MemoryContext TopTransactionContext
Definition: mcxt.c:154
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition: mcxt.c:1214
PgStat_SubXactStatus * pgstat_get_xact_stack_level(int nest_level)
Definition: pgstat_xact.c:236
PgStat_TableXactStatus * first
struct PgStat_TableXactStatus * trans
Definition: pgstat.h:201
static zic_t trans[TZ_MAX_LEAPS]
Definition: zic.c:402

References PgStat_SubXactStatus::first, MemoryContextAllocZero(), pgstat_get_xact_stack_level(), TopTransactionContext, PgStat_TableStatus::trans, and trans.

Referenced by ensure_tabstat_xact_level().

◆ AtEOSubXact_PgStat_Relations()

void AtEOSubXact_PgStat_Relations ( PgStat_SubXactStatus xact_state,
bool  isCommit,
int  nestDepth 
)

Definition at line 595 of file pgstat_relation.c.

596 {
598  PgStat_TableXactStatus *next_trans;
599 
600  for (trans = xact_state->first; trans != NULL; trans = next_trans)
601  {
602  PgStat_TableStatus *tabstat;
603 
604  next_trans = trans->next;
605  Assert(trans->nest_level == nestDepth);
606  tabstat = trans->parent;
607  Assert(tabstat->trans == trans);
608 
609  if (isCommit)
610  {
611  if (trans->upper && trans->upper->nest_level == nestDepth - 1)
612  {
613  if (trans->truncdropped)
614  {
615  /* propagate the truncate/drop status one level up */
616  save_truncdrop_counters(trans->upper, false);
617  /* replace upper xact stats with ours */
618  trans->upper->tuples_inserted = trans->tuples_inserted;
619  trans->upper->tuples_updated = trans->tuples_updated;
620  trans->upper->tuples_deleted = trans->tuples_deleted;
621  }
622  else
623  {
624  trans->upper->tuples_inserted += trans->tuples_inserted;
625  trans->upper->tuples_updated += trans->tuples_updated;
626  trans->upper->tuples_deleted += trans->tuples_deleted;
627  }
628  tabstat->trans = trans->upper;
629  pfree(trans);
630  }
631  else
632  {
633  /*
634  * When there isn't an immediate parent state, we can just
635  * reuse the record instead of going through a palloc/pfree
636  * pushup (this works since it's all in TopTransactionContext
637  * anyway). We have to re-link it into the parent level,
638  * though, and that might mean pushing a new entry into the
639  * pgStatXactStack.
640  */
641  PgStat_SubXactStatus *upper_xact_state;
642 
643  upper_xact_state = pgstat_get_xact_stack_level(nestDepth - 1);
644  trans->next = upper_xact_state->first;
645  upper_xact_state->first = trans;
646  trans->nest_level = nestDepth - 1;
647  }
648  }
649  else
650  {
651  /*
652  * On abort, update top-level tabstat counts, then forget the
653  * subtransaction
654  */
655 
656  /* first restore values obliterated by truncate/drop */
658  /* count attempted actions regardless of commit/abort */
659  tabstat->counts.tuples_inserted += trans->tuples_inserted;
660  tabstat->counts.tuples_updated += trans->tuples_updated;
661  tabstat->counts.tuples_deleted += trans->tuples_deleted;
662  /* inserted tuples are dead, deleted tuples are unaffected */
663  tabstat->counts.delta_dead_tuples +=
664  trans->tuples_inserted + trans->tuples_updated;
665  tabstat->trans = trans->upper;
666  pfree(trans);
667  }
668  }
669 }
#define Assert(condition)
Definition: c.h:858
void pfree(void *pointer)
Definition: mcxt.c:1520
static void save_truncdrop_counters(PgStat_TableXactStatus *trans, bool is_drop)
static void restore_truncdrop_counters(PgStat_TableXactStatus *trans)
PgStat_Counter tuples_inserted
Definition: pgstat.h:167
PgStat_Counter tuples_updated
Definition: pgstat.h:168
PgStat_Counter delta_dead_tuples
Definition: pgstat.h:175
PgStat_Counter tuples_deleted
Definition: pgstat.h:169
PgStat_TableCounts counts
Definition: pgstat.h:202

References Assert, PgStat_TableStatus::counts, PgStat_TableCounts::delta_dead_tuples, PgStat_SubXactStatus::first, pfree(), pgstat_get_xact_stack_level(), restore_truncdrop_counters(), save_truncdrop_counters(), PgStat_TableStatus::trans, trans, PgStat_TableCounts::tuples_deleted, PgStat_TableCounts::tuples_inserted, and PgStat_TableCounts::tuples_updated.

Referenced by AtEOSubXact_PgStat().

◆ AtEOXact_PgStat_Relations()

void AtEOXact_PgStat_Relations ( PgStat_SubXactStatus xact_state,
bool  isCommit 
)

Definition at line 537 of file pgstat_relation.c.

538 {
540 
541  for (trans = xact_state->first; trans != NULL; trans = trans->next)
542  {
543  PgStat_TableStatus *tabstat;
544 
545  Assert(trans->nest_level == 1);
546  Assert(trans->upper == NULL);
547  tabstat = trans->parent;
548  Assert(tabstat->trans == trans);
549  /* restore pre-truncate/drop stats (if any) in case of aborted xact */
550  if (!isCommit)
552  /* count attempted actions regardless of commit/abort */
553  tabstat->counts.tuples_inserted += trans->tuples_inserted;
554  tabstat->counts.tuples_updated += trans->tuples_updated;
555  tabstat->counts.tuples_deleted += trans->tuples_deleted;
556  if (isCommit)
557  {
558  tabstat->counts.truncdropped = trans->truncdropped;
559  if (trans->truncdropped)
560  {
561  /* forget live/dead stats seen by backend thus far */
562  tabstat->counts.delta_live_tuples = 0;
563  tabstat->counts.delta_dead_tuples = 0;
564  }
565  /* insert adds a live tuple, delete removes one */
566  tabstat->counts.delta_live_tuples +=
567  trans->tuples_inserted - trans->tuples_deleted;
568  /* update and delete each create a dead tuple */
569  tabstat->counts.delta_dead_tuples +=
570  trans->tuples_updated + trans->tuples_deleted;
571  /* insert, update, delete each count as one change event */
572  tabstat->counts.changed_tuples +=
573  trans->tuples_inserted + trans->tuples_updated +
574  trans->tuples_deleted;
575  }
576  else
577  {
578  /* inserted tuples are dead, deleted tuples are unaffected */
579  tabstat->counts.delta_dead_tuples +=
580  trans->tuples_inserted + trans->tuples_updated;
581  /* an aborted xact generates no changed_tuple events */
582  }
583  tabstat->trans = NULL;
584  }
585 }
PgStat_Counter delta_live_tuples
Definition: pgstat.h:174
PgStat_Counter changed_tuples
Definition: pgstat.h:176

References Assert, PgStat_TableCounts::changed_tuples, PgStat_TableStatus::counts, PgStat_TableCounts::delta_dead_tuples, PgStat_TableCounts::delta_live_tuples, PgStat_SubXactStatus::first, restore_truncdrop_counters(), PgStat_TableStatus::trans, trans, PgStat_TableCounts::truncdropped, PgStat_TableCounts::tuples_deleted, PgStat_TableCounts::tuples_inserted, and PgStat_TableCounts::tuples_updated.

Referenced by AtEOXact_PgStat().

◆ AtPrepare_PgStat_Relations()

void AtPrepare_PgStat_Relations ( PgStat_SubXactStatus xact_state)

Definition at line 676 of file pgstat_relation.c.

677 {
679 
680  for (trans = xact_state->first; trans != NULL; trans = trans->next)
681  {
683  TwoPhasePgStatRecord record;
684 
685  Assert(trans->nest_level == 1);
686  Assert(trans->upper == NULL);
687  tabstat = trans->parent;
688  Assert(tabstat->trans == trans);
689 
690  record.tuples_inserted = trans->tuples_inserted;
691  record.tuples_updated = trans->tuples_updated;
692  record.tuples_deleted = trans->tuples_deleted;
693  record.inserted_pre_truncdrop = trans->inserted_pre_truncdrop;
694  record.updated_pre_truncdrop = trans->updated_pre_truncdrop;
695  record.deleted_pre_truncdrop = trans->deleted_pre_truncdrop;
696  record.id = tabstat->id;
697  record.shared = tabstat->shared;
698  record.truncdropped = trans->truncdropped;
699 
701  &record, sizeof(TwoPhasePgStatRecord));
702  }
703 }
#define PG_USED_FOR_ASSERTS_ONLY
Definition: c.h:182
PgStat_Counter deleted_pre_truncdrop
PgStat_Counter inserted_pre_truncdrop
PgStat_Counter updated_pre_truncdrop
PgStat_Counter tuples_deleted
PgStat_Counter tuples_inserted
PgStat_Counter tuples_updated
void RegisterTwoPhaseRecord(TwoPhaseRmgrId rmid, uint16 info, const void *data, uint32 len)
Definition: twophase.c:1280
#define TWOPHASE_RM_PGSTAT_ID
Definition: twophase_rmgr.h:26

References Assert, TwoPhasePgStatRecord::deleted_pre_truncdrop, PgStat_SubXactStatus::first, TwoPhasePgStatRecord::id, TwoPhasePgStatRecord::inserted_pre_truncdrop, PG_USED_FOR_ASSERTS_ONLY, RegisterTwoPhaseRecord(), TwoPhasePgStatRecord::shared, trans, TwoPhasePgStatRecord::truncdropped, TwoPhasePgStatRecord::tuples_deleted, TwoPhasePgStatRecord::tuples_inserted, TwoPhasePgStatRecord::tuples_updated, TWOPHASE_RM_PGSTAT_ID, and TwoPhasePgStatRecord::updated_pre_truncdrop.

Referenced by AtPrepare_PgStat().

◆ ensure_tabstat_xact_level()

static void ensure_tabstat_xact_level ( PgStat_TableStatus pgstat_info)
static

Definition at line 944 of file pgstat_relation.c.

945 {
946  int nest_level = GetCurrentTransactionNestLevel();
947 
948  if (pgstat_info->trans == NULL ||
949  pgstat_info->trans->nest_level != nest_level)
950  add_tabstat_xact_level(pgstat_info, nest_level);
951 }
static void add_tabstat_xact_level(PgStat_TableStatus *pgstat_info, int nest_level)
int GetCurrentTransactionNestLevel(void)
Definition: xact.c:926

References add_tabstat_xact_level(), GetCurrentTransactionNestLevel(), PgStat_TableXactStatus::nest_level, and PgStat_TableStatus::trans.

Referenced by pgstat_count_heap_delete(), pgstat_count_heap_insert(), pgstat_count_heap_update(), and pgstat_count_truncate().

◆ find_tabstat_entry()

PgStat_TableStatus* find_tabstat_entry ( Oid  rel_id)

Definition at line 487 of file pgstat_relation.c.

488 {
489  PgStat_EntryRef *entry_ref;
491  PgStat_TableStatus *tabentry = NULL;
492  PgStat_TableStatus *tablestatus = NULL;
493 
495  if (!entry_ref)
496  {
498  if (!entry_ref)
499  return tablestatus;
500  }
501 
502  tabentry = (PgStat_TableStatus *) entry_ref->pending;
503  tablestatus = palloc(sizeof(PgStat_TableStatus));
504  *tablestatus = *tabentry;
505 
506  /*
507  * Reset tablestatus->trans in the copy of PgStat_TableStatus as it may
508  * point to a shared memory area. Its data is saved below, so removing it
509  * does not matter.
510  */
511  tablestatus->trans = NULL;
512 
513  /*
514  * Live subtransaction counts are not included yet. This is not a hot
515  * code path so reconcile tuples_inserted, tuples_updated and
516  * tuples_deleted even if the caller may not be interested in this data.
517  */
518  for (trans = tabentry->trans; trans != NULL; trans = trans->upper)
519  {
520  tablestatus->counts.tuples_inserted += trans->tuples_inserted;
521  tablestatus->counts.tuples_updated += trans->tuples_updated;
522  tablestatus->counts.tuples_deleted += trans->tuples_deleted;
523  }
524 
525  return tablestatus;
526 }
Oid MyDatabaseId
Definition: globals.c:91
void * palloc(Size size)
Definition: mcxt.c:1316
PgStat_EntryRef * pgstat_fetch_pending_entry(PgStat_Kind kind, Oid dboid, Oid objoid)
Definition: pgstat.c:1143
@ PGSTAT_KIND_RELATION
Definition: pgstat.h:42
#define InvalidOid
Definition: postgres_ext.h:36

References PgStat_TableStatus::counts, InvalidOid, MyDatabaseId, palloc(), PgStat_EntryRef::pending, pgstat_fetch_pending_entry(), PGSTAT_KIND_RELATION, PgStat_TableStatus::trans, trans, PgStat_TableCounts::tuples_deleted, PgStat_TableCounts::tuples_inserted, and PgStat_TableCounts::tuples_updated.

◆ pgstat_assoc_relation()

void pgstat_assoc_relation ( Relation  rel)

Definition at line 132 of file pgstat_relation.c.

133 {
134  Assert(rel->pgstat_enabled);
135  Assert(rel->pgstat_info == NULL);
136 
137  /* Else find or make the PgStat_TableStatus entry, and update link */
139  rel->rd_rel->relisshared);
140 
141  /* don't allow link a stats to multiple relcache entries */
142  Assert(rel->pgstat_info->relation == NULL);
143 
144  /* mark this relation as the owner */
145  rel->pgstat_info->relation = rel;
146 }
static PgStat_TableStatus * pgstat_prep_relation_pending(Oid rel_id, bool isshared)
#define RelationGetRelid(relation)
Definition: rel.h:505
Relation relation
Definition: pgstat.h:203
bool pgstat_enabled
Definition: rel.h:253
Form_pg_class rd_rel
Definition: rel.h:111
struct PgStat_TableStatus * pgstat_info
Definition: rel.h:255

References Assert, RelationData::pgstat_enabled, RelationData::pgstat_info, pgstat_prep_relation_pending(), RelationData::rd_rel, PgStat_TableStatus::relation, and RelationGetRelid.

◆ pgstat_copy_relation_stats()

void pgstat_copy_relation_stats ( Relation  dst,
Relation  src 
)

Definition at line 58 of file pgstat_relation.c.

59 {
60  PgStat_StatTabEntry *srcstats;
61  PgStatShared_Relation *dstshstats;
62  PgStat_EntryRef *dst_ref;
63 
64  srcstats = pgstat_fetch_stat_tabentry_ext(src->rd_rel->relisshared,
65  RelationGetRelid(src));
66  if (!srcstats)
67  return;
68 
70  dst->rd_rel->relisshared ? InvalidOid : MyDatabaseId,
71  RelationGetRelid(dst),
72  false);
73 
74  dstshstats = (PgStatShared_Relation *) dst_ref->shared_stats;
75  dstshstats->stats = *srcstats;
76 
77  pgstat_unlock_entry(dst_ref);
78 }
PgStat_StatTabEntry * pgstat_fetch_stat_tabentry_ext(bool shared, Oid reloid)
void pgstat_unlock_entry(PgStat_EntryRef *entry_ref)
Definition: pgstat_shmem.c:604
PgStat_EntryRef * pgstat_get_entry_ref_locked(PgStat_Kind kind, Oid dboid, Oid objoid, bool nowait)
Definition: pgstat_shmem.c:613
PgStat_StatTabEntry stats
PgStatShared_Common * shared_stats

References InvalidOid, MyDatabaseId, pgstat_fetch_stat_tabentry_ext(), pgstat_get_entry_ref_locked(), PGSTAT_KIND_RELATION, pgstat_unlock_entry(), RelationData::rd_rel, RelationGetRelid, PgStat_EntryRef::shared_stats, and PgStatShared_Relation::stats.

Referenced by index_concurrently_swap().

◆ pgstat_count_heap_delete()

void pgstat_count_heap_delete ( Relation  rel)

Definition at line 401 of file pgstat_relation.c.

402 {
404  {
405  PgStat_TableStatus *pgstat_info = rel->pgstat_info;
406 
407  ensure_tabstat_xact_level(pgstat_info);
408  pgstat_info->trans->tuples_deleted++;
409  }
410 }
#define pgstat_should_count_relation(rel)
Definition: pgstat.h:604
static void ensure_tabstat_xact_level(PgStat_TableStatus *pgstat_info)
PgStat_Counter tuples_deleted
Definition: pgstat.h:214

References ensure_tabstat_xact_level(), RelationData::pgstat_info, pgstat_should_count_relation, PgStat_TableStatus::trans, and PgStat_TableXactStatus::tuples_deleted.

Referenced by heap_abort_speculative(), and heap_delete().

◆ pgstat_count_heap_insert()

void pgstat_count_heap_insert ( Relation  rel,
PgStat_Counter  n 
)

Definition at line 360 of file pgstat_relation.c.

361 {
363  {
364  PgStat_TableStatus *pgstat_info = rel->pgstat_info;
365 
366  ensure_tabstat_xact_level(pgstat_info);
367  pgstat_info->trans->tuples_inserted += n;
368  }
369 }
PgStat_Counter tuples_inserted
Definition: pgstat.h:212

References ensure_tabstat_xact_level(), RelationData::pgstat_info, pgstat_should_count_relation, PgStat_TableStatus::trans, and PgStat_TableXactStatus::tuples_inserted.

Referenced by ExecRefreshMatView(), heap_insert(), and heap_multi_insert().

◆ pgstat_count_heap_update()

void pgstat_count_heap_update ( Relation  rel,
bool  hot,
bool  newpage 
)

Definition at line 375 of file pgstat_relation.c.

376 {
377  Assert(!(hot && newpage));
378 
380  {
381  PgStat_TableStatus *pgstat_info = rel->pgstat_info;
382 
383  ensure_tabstat_xact_level(pgstat_info);
384  pgstat_info->trans->tuples_updated++;
385 
386  /*
387  * tuples_hot_updated and tuples_newpage_updated counters are
388  * nontransactional, so just advance them
389  */
390  if (hot)
391  pgstat_info->counts.tuples_hot_updated++;
392  else if (newpage)
393  pgstat_info->counts.tuples_newpage_updated++;
394  }
395 }
PgStat_Counter tuples_hot_updated
Definition: pgstat.h:170
PgStat_Counter tuples_newpage_updated
Definition: pgstat.h:171
PgStat_Counter tuples_updated
Definition: pgstat.h:213

References Assert, PgStat_TableStatus::counts, ensure_tabstat_xact_level(), RelationData::pgstat_info, pgstat_should_count_relation, PgStat_TableStatus::trans, PgStat_TableCounts::tuples_hot_updated, PgStat_TableCounts::tuples_newpage_updated, and PgStat_TableXactStatus::tuples_updated.

Referenced by heap_update().

◆ pgstat_count_truncate()

void pgstat_count_truncate ( Relation  rel)

◆ pgstat_create_relation()

void pgstat_create_relation ( Relation  rel)

Definition at line 169 of file pgstat_relation.c.

170 {
172  rel->rd_rel->relisshared ? InvalidOid : MyDatabaseId,
173  RelationGetRelid(rel));
174 }
void pgstat_create_transactional(PgStat_Kind kind, Oid dboid, Oid objoid)
Definition: pgstat_xact.c:357

References InvalidOid, MyDatabaseId, pgstat_create_transactional(), PGSTAT_KIND_RELATION, RelationData::rd_rel, and RelationGetRelid.

Referenced by heap_create().

◆ pgstat_drop_relation()

void pgstat_drop_relation ( Relation  rel)

Definition at line 180 of file pgstat_relation.c.

181 {
182  int nest_level = GetCurrentTransactionNestLevel();
183  PgStat_TableStatus *pgstat_info;
184 
186  rel->rd_rel->relisshared ? InvalidOid : MyDatabaseId,
187  RelationGetRelid(rel));
188 
190  return;
191 
192  /*
193  * Transactionally set counters to 0. That ensures that accesses to
194  * pg_stat_xact_all_tables inside the transaction show 0.
195  */
196  pgstat_info = rel->pgstat_info;
197  if (pgstat_info->trans &&
198  pgstat_info->trans->nest_level == nest_level)
199  {
200  save_truncdrop_counters(pgstat_info->trans, true);
201  pgstat_info->trans->tuples_inserted = 0;
202  pgstat_info->trans->tuples_updated = 0;
203  pgstat_info->trans->tuples_deleted = 0;
204  }
205 }
void pgstat_drop_transactional(PgStat_Kind kind, Oid dboid, Oid objoid)
Definition: pgstat_xact.c:379

References GetCurrentTransactionNestLevel(), InvalidOid, MyDatabaseId, PgStat_TableXactStatus::nest_level, pgstat_drop_transactional(), RelationData::pgstat_info, PGSTAT_KIND_RELATION, pgstat_should_count_relation, RelationData::rd_rel, RelationGetRelid, save_truncdrop_counters(), PgStat_TableStatus::trans, PgStat_TableXactStatus::tuples_deleted, PgStat_TableXactStatus::tuples_inserted, and PgStat_TableXactStatus::tuples_updated.

Referenced by heap_drop_with_catalog(), and index_drop().

◆ pgstat_fetch_stat_tabentry()

PgStat_StatTabEntry* pgstat_fetch_stat_tabentry ( Oid  relid)

Definition at line 456 of file pgstat_relation.c.

457 {
458  return pgstat_fetch_stat_tabentry_ext(IsSharedRelation(relid), relid);
459 }
bool IsSharedRelation(Oid relationId)
Definition: catalog.c:243

References IsSharedRelation(), and pgstat_fetch_stat_tabentry_ext().

◆ pgstat_fetch_stat_tabentry_ext()

PgStat_StatTabEntry* pgstat_fetch_stat_tabentry_ext ( bool  shared,
Oid  reloid 
)

Definition at line 466 of file pgstat_relation.c.

467 {
468  Oid dboid = (shared ? InvalidOid : MyDatabaseId);
469 
470  return (PgStat_StatTabEntry *)
472 }
void * pgstat_fetch_entry(PgStat_Kind kind, Oid dboid, Oid objoid)
Definition: pgstat.c:812
unsigned int Oid
Definition: postgres_ext.h:31

References InvalidOid, MyDatabaseId, pgstat_fetch_entry(), and PGSTAT_KIND_RELATION.

Referenced by do_autovacuum(), pgstat_copy_relation_stats(), pgstat_fetch_stat_tabentry(), and recheck_relation_needs_vacanalyze().

◆ pgstat_init_relation()

void pgstat_init_relation ( Relation  rel)

Definition at line 92 of file pgstat_relation.c.

93 {
94  char relkind = rel->rd_rel->relkind;
95 
96  /*
97  * We only count stats for relations with storage and partitioned tables
98  */
99  if (!RELKIND_HAS_STORAGE(relkind) && relkind != RELKIND_PARTITIONED_TABLE)
100  {
101  rel->pgstat_enabled = false;
102  rel->pgstat_info = NULL;
103  return;
104  }
105 
106  if (!pgstat_track_counts)
107  {
108  if (rel->pgstat_info)
110 
111  /* We're not counting at all */
112  rel->pgstat_enabled = false;
113  rel->pgstat_info = NULL;
114  return;
115  }
116 
117  rel->pgstat_enabled = true;
118 }
bool pgstat_track_counts
Definition: pgstat.c:184
void pgstat_unlink_relation(Relation rel)

References RelationData::pgstat_enabled, RelationData::pgstat_info, pgstat_track_counts, pgstat_unlink_relation(), and RelationData::rd_rel.

Referenced by relation_open(), and try_relation_open().

◆ pgstat_prep_relation_pending()

static PgStat_TableStatus * pgstat_prep_relation_pending ( Oid  rel_id,
bool  isshared 
)
static

Definition at line 898 of file pgstat_relation.c.

899 {
900  PgStat_EntryRef *entry_ref;
901  PgStat_TableStatus *pending;
902 
904  isshared ? InvalidOid : MyDatabaseId,
905  rel_id, NULL);
906  pending = entry_ref->pending;
907  pending->id = rel_id;
908  pending->shared = isshared;
909 
910  return pending;
911 }
PgStat_EntryRef * pgstat_prep_pending_entry(PgStat_Kind kind, Oid dboid, Oid objoid, bool *created_entry)
Definition: pgstat.c:1105

References PgStat_TableStatus::id, InvalidOid, MyDatabaseId, PgStat_EntryRef::pending, PGSTAT_KIND_RELATION, pgstat_prep_pending_entry(), and PgStat_TableStatus::shared.

Referenced by pgstat_assoc_relation(), pgstat_twophase_postabort(), and pgstat_twophase_postcommit().

◆ pgstat_relation_delete_pending_cb()

void pgstat_relation_delete_pending_cb ( PgStat_EntryRef entry_ref)

Definition at line 885 of file pgstat_relation.c.

886 {
887  PgStat_TableStatus *pending = (PgStat_TableStatus *) entry_ref->pending;
888 
889  if (pending->relation)
891 }
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77

References if(), PgStat_EntryRef::pending, pgstat_unlink_relation(), and PgStat_TableStatus::relation.

◆ pgstat_relation_flush_cb()

bool pgstat_relation_flush_cb ( PgStat_EntryRef entry_ref,
bool  nowait 
)

Definition at line 802 of file pgstat_relation.c.

803 {
804  static const PgStat_TableCounts all_zeroes;
805  Oid dboid;
806  PgStat_TableStatus *lstats; /* pending stats entry */
807  PgStatShared_Relation *shtabstats;
808  PgStat_StatTabEntry *tabentry; /* table entry of shared stats */
809  PgStat_StatDBEntry *dbentry; /* pending database entry */
810 
811  dboid = entry_ref->shared_entry->key.dboid;
812  lstats = (PgStat_TableStatus *) entry_ref->pending;
813  shtabstats = (PgStatShared_Relation *) entry_ref->shared_stats;
814 
815  /*
816  * Ignore entries that didn't accumulate any actual counts, such as
817  * indexes that were opened by the planner but not used.
818  */
819  if (memcmp(&lstats->counts, &all_zeroes,
820  sizeof(PgStat_TableCounts)) == 0)
821  {
822  return true;
823  }
824 
825  if (!pgstat_lock_entry(entry_ref, nowait))
826  return false;
827 
828  /* add the values to the shared entry. */
829  tabentry = &shtabstats->stats;
830 
831  tabentry->numscans += lstats->counts.numscans;
832  if (lstats->counts.numscans)
833  {
835 
836  if (t > tabentry->lastscan)
837  tabentry->lastscan = t;
838  }
839  tabentry->tuples_returned += lstats->counts.tuples_returned;
840  tabentry->tuples_fetched += lstats->counts.tuples_fetched;
841  tabentry->tuples_inserted += lstats->counts.tuples_inserted;
842  tabentry->tuples_updated += lstats->counts.tuples_updated;
843  tabentry->tuples_deleted += lstats->counts.tuples_deleted;
844  tabentry->tuples_hot_updated += lstats->counts.tuples_hot_updated;
846 
847  /*
848  * If table was truncated/dropped, first reset the live/dead counters.
849  */
850  if (lstats->counts.truncdropped)
851  {
852  tabentry->live_tuples = 0;
853  tabentry->dead_tuples = 0;
854  tabentry->ins_since_vacuum = 0;
855  }
856 
857  tabentry->live_tuples += lstats->counts.delta_live_tuples;
858  tabentry->dead_tuples += lstats->counts.delta_dead_tuples;
859  tabentry->mod_since_analyze += lstats->counts.changed_tuples;
860  tabentry->ins_since_vacuum += lstats->counts.tuples_inserted;
861  tabentry->blocks_fetched += lstats->counts.blocks_fetched;
862  tabentry->blocks_hit += lstats->counts.blocks_hit;
863 
864  /* Clamp live_tuples in case of negative delta_live_tuples */
865  tabentry->live_tuples = Max(tabentry->live_tuples, 0);
866  /* Likewise for dead_tuples */
867  tabentry->dead_tuples = Max(tabentry->dead_tuples, 0);
868 
869  pgstat_unlock_entry(entry_ref);
870 
871  /* The entry was successfully flushed, add the same to database stats */
872  dbentry = pgstat_prep_database_pending(dboid);
873  dbentry->tuples_returned += lstats->counts.tuples_returned;
874  dbentry->tuples_fetched += lstats->counts.tuples_fetched;
875  dbentry->tuples_inserted += lstats->counts.tuples_inserted;
876  dbentry->tuples_updated += lstats->counts.tuples_updated;
877  dbentry->tuples_deleted += lstats->counts.tuples_deleted;
878  dbentry->blocks_fetched += lstats->counts.blocks_fetched;
879  dbentry->blocks_hit += lstats->counts.blocks_hit;
880 
881  return true;
882 }
#define Max(x, y)
Definition: c.h:998
int64 TimestampTz
Definition: timestamp.h:39
PgStat_StatDBEntry * pgstat_prep_database_pending(Oid dboid)
bool pgstat_lock_entry(PgStat_EntryRef *entry_ref, bool nowait)
Definition: pgstat_shmem.c:576
PgStatShared_HashEntry * shared_entry
PgStat_Counter tuples_updated
Definition: pgstat.h:332
PgStat_Counter tuples_inserted
Definition: pgstat.h:331
PgStat_Counter tuples_returned
Definition: pgstat.h:329
PgStat_Counter blocks_hit
Definition: pgstat.h:328
PgStat_Counter blocks_fetched
Definition: pgstat.h:327
PgStat_Counter tuples_deleted
Definition: pgstat.h:333
PgStat_Counter tuples_fetched
Definition: pgstat.h:330
PgStat_Counter tuples_fetched
Definition: pgstat.h:405
PgStat_Counter ins_since_vacuum
Definition: pgstat.h:416
PgStat_Counter blocks_hit
Definition: pgstat.h:419
PgStat_Counter mod_since_analyze
Definition: pgstat.h:415
PgStat_Counter tuples_deleted
Definition: pgstat.h:409
PgStat_Counter tuples_hot_updated
Definition: pgstat.h:410
PgStat_Counter tuples_updated
Definition: pgstat.h:408
PgStat_Counter live_tuples
Definition: pgstat.h:413
PgStat_Counter numscans
Definition: pgstat.h:401
PgStat_Counter dead_tuples
Definition: pgstat.h:414
PgStat_Counter blocks_fetched
Definition: pgstat.h:418
PgStat_Counter tuples_returned
Definition: pgstat.h:404
TimestampTz lastscan
Definition: pgstat.h:402
PgStat_Counter tuples_inserted
Definition: pgstat.h:407
PgStat_Counter tuples_newpage_updated
Definition: pgstat.h:411
PgStat_Counter blocks_hit
Definition: pgstat.h:179
PgStat_Counter numscans
Definition: pgstat.h:162
PgStat_Counter tuples_returned
Definition: pgstat.h:164
PgStat_Counter blocks_fetched
Definition: pgstat.h:178
PgStat_Counter tuples_fetched
Definition: pgstat.h:165
TimestampTz GetCurrentTransactionStopTimestamp(void)
Definition: xact.c:888

References PgStat_TableCounts::blocks_fetched, PgStat_StatDBEntry::blocks_fetched, PgStat_StatTabEntry::blocks_fetched, PgStat_TableCounts::blocks_hit, PgStat_StatDBEntry::blocks_hit, PgStat_StatTabEntry::blocks_hit, PgStat_TableCounts::changed_tuples, PgStat_TableStatus::counts, PgStat_HashKey::dboid, PgStat_StatTabEntry::dead_tuples, PgStat_TableCounts::delta_dead_tuples, PgStat_TableCounts::delta_live_tuples, GetCurrentTransactionStopTimestamp(), PgStat_StatTabEntry::ins_since_vacuum, PgStatShared_HashEntry::key, PgStat_StatTabEntry::lastscan, PgStat_StatTabEntry::live_tuples, Max, PgStat_StatTabEntry::mod_since_analyze, PgStat_TableCounts::numscans, PgStat_StatTabEntry::numscans, PgStat_EntryRef::pending, pgstat_lock_entry(), pgstat_prep_database_pending(), pgstat_unlock_entry(), PgStat_EntryRef::shared_entry, PgStat_EntryRef::shared_stats, PgStatShared_Relation::stats, PgStat_TableCounts::truncdropped, PgStat_TableCounts::tuples_deleted, PgStat_StatDBEntry::tuples_deleted, PgStat_StatTabEntry::tuples_deleted, PgStat_TableCounts::tuples_fetched, PgStat_StatDBEntry::tuples_fetched, PgStat_StatTabEntry::tuples_fetched, PgStat_TableCounts::tuples_hot_updated, PgStat_StatTabEntry::tuples_hot_updated, PgStat_TableCounts::tuples_inserted, PgStat_StatDBEntry::tuples_inserted, PgStat_StatTabEntry::tuples_inserted, PgStat_TableCounts::tuples_newpage_updated, PgStat_StatTabEntry::tuples_newpage_updated, PgStat_TableCounts::tuples_returned, PgStat_StatDBEntry::tuples_returned, PgStat_StatTabEntry::tuples_returned, PgStat_TableCounts::tuples_updated, PgStat_StatDBEntry::tuples_updated, and PgStat_StatTabEntry::tuples_updated.

◆ pgstat_report_analyze()

void pgstat_report_analyze ( Relation  rel,
PgStat_Counter  livetuples,
PgStat_Counter  deadtuples,
bool  resetcounter 
)

Definition at line 277 of file pgstat_relation.c.

280 {
281  PgStat_EntryRef *entry_ref;
282  PgStatShared_Relation *shtabentry;
283  PgStat_StatTabEntry *tabentry;
284  Oid dboid = (rel->rd_rel->relisshared ? InvalidOid : MyDatabaseId);
285 
286  if (!pgstat_track_counts)
287  return;
288 
289  /*
290  * Unlike VACUUM, ANALYZE might be running inside a transaction that has
291  * already inserted and/or deleted rows in the target table. ANALYZE will
292  * have counted such rows as live or dead respectively. Because we will
293  * report our counts of such rows at transaction end, we should subtract
294  * off these counts from the update we're making now, else they'll be
295  * double-counted after commit. (This approach also ensures that the
296  * shared stats entry ends up with the right numbers if we abort instead
297  * of committing.)
298  *
299  * Waste no time on partitioned tables, though.
300  */
301  if (pgstat_should_count_relation(rel) &&
302  rel->rd_rel->relkind != RELKIND_PARTITIONED_TABLE)
303  {
305 
306  for (trans = rel->pgstat_info->trans; trans; trans = trans->upper)
307  {
308  livetuples -= trans->tuples_inserted - trans->tuples_deleted;
309  deadtuples -= trans->tuples_updated + trans->tuples_deleted;
310  }
311  /* count stuff inserted by already-aborted subxacts, too */
312  deadtuples -= rel->pgstat_info->counts.delta_dead_tuples;
313  /* Since ANALYZE's counts are estimates, we could have underflowed */
314  livetuples = Max(livetuples, 0);
315  deadtuples = Max(deadtuples, 0);
316  }
317 
318  /* block acquiring lock for the same reason as pgstat_report_autovac() */
320  RelationGetRelid(rel),
321  false);
322  /* can't get dropped while accessed */
323  Assert(entry_ref != NULL && entry_ref->shared_stats != NULL);
324 
325  shtabentry = (PgStatShared_Relation *) entry_ref->shared_stats;
326  tabentry = &shtabentry->stats;
327 
328  tabentry->live_tuples = livetuples;
329  tabentry->dead_tuples = deadtuples;
330 
331  /*
332  * If commanded, reset mod_since_analyze to zero. This forgets any
333  * changes that were committed while the ANALYZE was in progress, but we
334  * have no good way to estimate how many of those there were.
335  */
336  if (resetcounter)
337  tabentry->mod_since_analyze = 0;
338 
340  {
342  tabentry->autoanalyze_count++;
343  }
344  else
345  {
347  tabentry->analyze_count++;
348  }
349 
350  pgstat_unlock_entry(entry_ref);
351 
352  /* see pgstat_report_vacuum() */
353  pgstat_flush_io(false);
354 }
TimestampTz GetCurrentTimestamp(void)
Definition: timestamp.c:1654
#define AmAutoVacuumWorkerProcess()
Definition: miscadmin.h:375
bool pgstat_flush_io(bool nowait)
Definition: pgstat_io.c:173
PgStat_Counter analyze_count
Definition: pgstat.h:426
TimestampTz last_analyze_time
Definition: pgstat.h:425
PgStat_Counter autoanalyze_count
Definition: pgstat.h:428
TimestampTz last_autoanalyze_time
Definition: pgstat.h:427

References AmAutoVacuumWorkerProcess, PgStat_StatTabEntry::analyze_count, Assert, PgStat_StatTabEntry::autoanalyze_count, PgStat_TableStatus::counts, PgStat_StatTabEntry::dead_tuples, PgStat_TableCounts::delta_dead_tuples, GetCurrentTimestamp(), if(), InvalidOid, PgStat_StatTabEntry::last_analyze_time, PgStat_StatTabEntry::last_autoanalyze_time, PgStat_StatTabEntry::live_tuples, Max, PgStat_StatTabEntry::mod_since_analyze, MyDatabaseId, pgstat_flush_io(), pgstat_get_entry_ref_locked(), RelationData::pgstat_info, PGSTAT_KIND_RELATION, pgstat_should_count_relation, pgstat_track_counts, pgstat_unlock_entry(), RelationData::rd_rel, RelationGetRelid, PgStat_EntryRef::shared_stats, PgStatShared_Relation::stats, PgStat_TableStatus::trans, and trans.

Referenced by do_analyze_rel().

◆ pgstat_report_vacuum()

void pgstat_report_vacuum ( Oid  tableoid,
bool  shared,
PgStat_Counter  livetuples,
PgStat_Counter  deadtuples 
)

Definition at line 211 of file pgstat_relation.c.

213 {
214  PgStat_EntryRef *entry_ref;
215  PgStatShared_Relation *shtabentry;
216  PgStat_StatTabEntry *tabentry;
217  Oid dboid = (shared ? InvalidOid : MyDatabaseId);
218  TimestampTz ts;
219 
220  if (!pgstat_track_counts)
221  return;
222 
223  /* Store the data in the table's hash table entry. */
224  ts = GetCurrentTimestamp();
225 
226  /* block acquiring lock for the same reason as pgstat_report_autovac() */
228  dboid, tableoid, false);
229 
230  shtabentry = (PgStatShared_Relation *) entry_ref->shared_stats;
231  tabentry = &shtabentry->stats;
232 
233  tabentry->live_tuples = livetuples;
234  tabentry->dead_tuples = deadtuples;
235 
236  /*
237  * It is quite possible that a non-aggressive VACUUM ended up skipping
238  * various pages, however, we'll zero the insert counter here regardless.
239  * It's currently used only to track when we need to perform an "insert"
240  * autovacuum, which are mainly intended to freeze newly inserted tuples.
241  * Zeroing this may just mean we'll not try to vacuum the table again
242  * until enough tuples have been inserted to trigger another insert
243  * autovacuum. An anti-wraparound autovacuum will catch any persistent
244  * stragglers.
245  */
246  tabentry->ins_since_vacuum = 0;
247 
249  {
250  tabentry->last_autovacuum_time = ts;
251  tabentry->autovacuum_count++;
252  }
253  else
254  {
255  tabentry->last_vacuum_time = ts;
256  tabentry->vacuum_count++;
257  }
258 
259  pgstat_unlock_entry(entry_ref);
260 
261  /*
262  * Flush IO statistics now. pgstat_report_stat() will flush IO stats,
263  * however this will not be called until after an entire autovacuum cycle
264  * is done -- which will likely vacuum many relations -- or until the
265  * VACUUM command has processed all tables and committed.
266  */
267  pgstat_flush_io(false);
268 }
PgStat_Counter vacuum_count
Definition: pgstat.h:422
TimestampTz last_autovacuum_time
Definition: pgstat.h:423
PgStat_Counter autovacuum_count
Definition: pgstat.h:424
TimestampTz last_vacuum_time
Definition: pgstat.h:421

References AmAutoVacuumWorkerProcess, PgStat_StatTabEntry::autovacuum_count, PgStat_StatTabEntry::dead_tuples, GetCurrentTimestamp(), if(), PgStat_StatTabEntry::ins_since_vacuum, InvalidOid, PgStat_StatTabEntry::last_autovacuum_time, PgStat_StatTabEntry::last_vacuum_time, PgStat_StatTabEntry::live_tuples, MyDatabaseId, pgstat_flush_io(), pgstat_get_entry_ref_locked(), PGSTAT_KIND_RELATION, pgstat_track_counts, pgstat_unlock_entry(), PgStat_EntryRef::shared_stats, PgStatShared_Relation::stats, and PgStat_StatTabEntry::vacuum_count.

Referenced by heap_vacuum_rel().

◆ pgstat_twophase_postabort()

void pgstat_twophase_postabort ( TransactionId  xid,
uint16  info,
void *  recdata,
uint32  len 
)

◆ pgstat_twophase_postcommit()

void pgstat_twophase_postcommit ( TransactionId  xid,
uint16  info,
void *  recdata,
uint32  len 
)

Definition at line 733 of file pgstat_relation.c.

735 {
736  TwoPhasePgStatRecord *rec = (TwoPhasePgStatRecord *) recdata;
737  PgStat_TableStatus *pgstat_info;
738 
739  /* Find or create a tabstat entry for the rel */
740  pgstat_info = pgstat_prep_relation_pending(rec->id, rec->shared);
741 
742  /* Same math as in AtEOXact_PgStat, commit case */
743  pgstat_info->counts.tuples_inserted += rec->tuples_inserted;
744  pgstat_info->counts.tuples_updated += rec->tuples_updated;
745  pgstat_info->counts.tuples_deleted += rec->tuples_deleted;
746  pgstat_info->counts.truncdropped = rec->truncdropped;
747  if (rec->truncdropped)
748  {
749  /* forget live/dead stats seen by backend thus far */
750  pgstat_info->counts.delta_live_tuples = 0;
751  pgstat_info->counts.delta_dead_tuples = 0;
752  }
753  pgstat_info->counts.delta_live_tuples +=
754  rec->tuples_inserted - rec->tuples_deleted;
755  pgstat_info->counts.delta_dead_tuples +=
756  rec->tuples_updated + rec->tuples_deleted;
757  pgstat_info->counts.changed_tuples +=
758  rec->tuples_inserted + rec->tuples_updated +
759  rec->tuples_deleted;
760 }

References PgStat_TableCounts::changed_tuples, PgStat_TableStatus::counts, PgStat_TableCounts::delta_dead_tuples, PgStat_TableCounts::delta_live_tuples, TwoPhasePgStatRecord::id, pgstat_prep_relation_pending(), TwoPhasePgStatRecord::shared, TwoPhasePgStatRecord::truncdropped, PgStat_TableCounts::truncdropped, TwoPhasePgStatRecord::tuples_deleted, PgStat_TableCounts::tuples_deleted, TwoPhasePgStatRecord::tuples_inserted, PgStat_TableCounts::tuples_inserted, TwoPhasePgStatRecord::tuples_updated, and PgStat_TableCounts::tuples_updated.

◆ pgstat_unlink_relation()

void pgstat_unlink_relation ( Relation  rel)

Definition at line 153 of file pgstat_relation.c.

154 {
155  /* remove the link to stats info if any */
156  if (rel->pgstat_info == NULL)
157  return;
158 
159  /* link sanity check */
160  Assert(rel->pgstat_info->relation == rel);
161  rel->pgstat_info->relation = NULL;
162  rel->pgstat_info = NULL;
163 }

References Assert, RelationData::pgstat_info, and PgStat_TableStatus::relation.

Referenced by pgstat_init_relation(), pgstat_relation_delete_pending_cb(), and RelationDestroyRelation().

◆ pgstat_update_heap_dead_tuples()

void pgstat_update_heap_dead_tuples ( Relation  rel,
int  delta 
)

Definition at line 439 of file pgstat_relation.c.

440 {
442  {
443  PgStat_TableStatus *pgstat_info = rel->pgstat_info;
444 
445  pgstat_info->counts.delta_dead_tuples -= delta;
446  }
447 }

References PgStat_TableStatus::counts, PgStat_TableCounts::delta_dead_tuples, RelationData::pgstat_info, and pgstat_should_count_relation.

Referenced by heap_page_prune_opt().

◆ PostPrepare_PgStat_Relations()

void PostPrepare_PgStat_Relations ( PgStat_SubXactStatus xact_state)

Definition at line 714 of file pgstat_relation.c.

715 {
717 
718  for (trans = xact_state->first; trans != NULL; trans = trans->next)
719  {
720  PgStat_TableStatus *tabstat;
721 
722  tabstat = trans->parent;
723  tabstat->trans = NULL;
724  }
725 }

References PgStat_SubXactStatus::first, PgStat_TableStatus::trans, and trans.

Referenced by PostPrepare_PgStat().

◆ restore_truncdrop_counters()

static void restore_truncdrop_counters ( PgStat_TableXactStatus trans)
static

Definition at line 978 of file pgstat_relation.c.

979 {
980  if (trans->truncdropped)
981  {
982  trans->tuples_inserted = trans->inserted_pre_truncdrop;
983  trans->tuples_updated = trans->updated_pre_truncdrop;
984  trans->tuples_deleted = trans->deleted_pre_truncdrop;
985  }
986 }

References trans.

Referenced by AtEOSubXact_PgStat_Relations(), and AtEOXact_PgStat_Relations().

◆ save_truncdrop_counters()

static void save_truncdrop_counters ( PgStat_TableXactStatus trans,
bool  is_drop 
)
static

Definition at line 963 of file pgstat_relation.c.

964 {
965  if (!trans->truncdropped || is_drop)
966  {
967  trans->inserted_pre_truncdrop = trans->tuples_inserted;
968  trans->updated_pre_truncdrop = trans->tuples_updated;
969  trans->deleted_pre_truncdrop = trans->tuples_deleted;
970  trans->truncdropped = true;
971  }
972 }

References trans.

Referenced by AtEOSubXact_PgStat_Relations(), pgstat_count_truncate(), and pgstat_drop_relation().