PostgreSQL Source Code  git master
pgstatindex.c
Go to the documentation of this file.
1 /*
2  * contrib/pgstattuple/pgstatindex.c
3  *
4  *
5  * pgstatindex
6  *
7  * Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp>
8  *
9  * Permission to use, copy, modify, and distribute this software and
10  * its documentation for any purpose, without fee, and without a
11  * written agreement is hereby granted, provided that the above
12  * copyright notice and this paragraph and the following two
13  * paragraphs appear in all copies.
14  *
15  * IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT,
16  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
17  * LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
18  * DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED
19  * OF THE POSSIBILITY OF SUCH DAMAGE.
20  *
21  * THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS
24  * IS" BASIS, AND THE AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE,
25  * SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
26  */
27 
28 #include "postgres.h"
29 
30 #include "access/gin_private.h"
31 #include "access/hash.h"
32 #include "access/htup_details.h"
33 #include "access/nbtree.h"
34 #include "access/relation.h"
35 #include "access/table.h"
36 #include "catalog/namespace.h"
37 #include "catalog/pg_am.h"
38 #include "funcapi.h"
39 #include "miscadmin.h"
40 #include "storage/bufmgr.h"
41 #include "storage/lmgr.h"
42 #include "utils/builtins.h"
43 #include "utils/rel.h"
44 #include "utils/varlena.h"
45 
46 
47 /*
48  * Because of backward-compatibility issue, we have decided to have
49  * two types of interfaces, with regclass-type input arg and text-type
50  * input arg, for each function.
51  *
52  * Those functions which have text-type input arg will be deprecated
53  * in the future release.
54  */
61 
67 
69 
70 #define IS_INDEX(r) ((r)->rd_rel->relkind == RELKIND_INDEX)
71 #define IS_BTREE(r) ((r)->rd_rel->relam == BTREE_AM_OID)
72 #define IS_GIN(r) ((r)->rd_rel->relam == GIN_AM_OID)
73 #define IS_HASH(r) ((r)->rd_rel->relam == HASH_AM_OID)
74 
75 /* ------------------------------------------------
76  * A structure for a whole btree index statistics
77  * used by pgstatindex().
78  * ------------------------------------------------
79  */
80 typedef struct BTIndexStat
81 {
85 
87  uint64 leaf_pages;
88  uint64 empty_pages;
89  uint64 deleted_pages;
90 
91  uint64 max_avail;
92  uint64 free_space;
93 
94  uint64 fragments;
96 
97 /* ------------------------------------------------
98  * A structure for a whole GIN index statistics
99  * used by pgstatginindex().
100  * ------------------------------------------------
101  */
102 typedef struct GinIndexStat
103 {
105 
109 
110 /* ------------------------------------------------
111  * A structure for a whole HASH index statistics
112  * used by pgstathashindex().
113  * ------------------------------------------------
114  */
115 typedef struct HashIndexStat
116 {
119 
124 
125  int64 live_items;
126  int64 dead_items;
127  uint64 free_space;
129 
130 static Datum pgstatindex_impl(Relation rel, FunctionCallInfo fcinfo);
131 static int64 pg_relpages_impl(Relation rel);
132 static void GetHashPageStats(Page page, HashIndexStat *stats);
133 
134 /* ------------------------------------------------------
135  * pgstatindex()
136  *
137  * Usage: SELECT * FROM pgstatindex('t1_pkey');
138  *
139  * The superuser() check here must be kept as the library might be upgraded
140  * without the extension being upgraded, meaning that in pre-1.5 installations
141  * these functions could be called by any user.
142  * ------------------------------------------------------
143  */
144 Datum
146 {
148  Relation rel;
149  RangeVar *relrv;
150 
151  if (!superuser())
152  ereport(ERROR,
153  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
154  errmsg("must be superuser to use pgstattuple functions")));
155 
157  rel = relation_openrv(relrv, AccessShareLock);
158 
159  PG_RETURN_DATUM(pgstatindex_impl(rel, fcinfo));
160 }
161 
162 /*
163  * As of pgstattuple version 1.5, we no longer need to check if the user
164  * is a superuser because we REVOKE EXECUTE on the function from PUBLIC.
165  * Users can then grant access to it based on their policies.
166  *
167  * Otherwise identical to pgstatindex (above).
168  */
169 Datum
171 {
173  Relation rel;
174  RangeVar *relrv;
175 
177  rel = relation_openrv(relrv, AccessShareLock);
178 
179  PG_RETURN_DATUM(pgstatindex_impl(rel, fcinfo));
180 }
181 
182 /*
183  * The superuser() check here must be kept as the library might be upgraded
184  * without the extension being upgraded, meaning that in pre-1.5 installations
185  * these functions could be called by any user.
186  */
187 Datum
189 {
190  Oid relid = PG_GETARG_OID(0);
191  Relation rel;
192 
193  if (!superuser())
194  ereport(ERROR,
195  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
196  errmsg("must be superuser to use pgstattuple functions")));
197 
198  rel = relation_open(relid, AccessShareLock);
199 
200  PG_RETURN_DATUM(pgstatindex_impl(rel, fcinfo));
201 }
202 
203 /* No need for superuser checks in v1.5, see above */
204 Datum
206 {
207  Oid relid = PG_GETARG_OID(0);
208  Relation rel;
209 
210  rel = relation_open(relid, AccessShareLock);
211 
212  PG_RETURN_DATUM(pgstatindex_impl(rel, fcinfo));
213 }
214 
215 static Datum
217 {
218  Datum result;
219  BlockNumber nblocks;
220  BlockNumber blkno;
221  BTIndexStat indexStat;
223 
224  if (!IS_INDEX(rel) || !IS_BTREE(rel))
225  ereport(ERROR,
226  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
227  errmsg("relation \"%s\" is not a btree index",
228  RelationGetRelationName(rel))));
229 
230  /*
231  * Reject attempts to read non-local temporary relations; we would be
232  * likely to get wrong data since we have no visibility into the owning
233  * session's local buffers.
234  */
235  if (RELATION_IS_OTHER_TEMP(rel))
236  ereport(ERROR,
237  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
238  errmsg("cannot access temporary tables of other sessions")));
239 
240  /*
241  * Read metapage
242  */
243  {
244  Buffer buffer = ReadBufferExtended(rel, MAIN_FORKNUM, 0, RBM_NORMAL, bstrategy);
245  Page page = BufferGetPage(buffer);
246  BTMetaPageData *metad = BTPageGetMeta(page);
247 
248  indexStat.version = metad->btm_version;
249  indexStat.level = metad->btm_level;
250  indexStat.root_blkno = metad->btm_root;
251 
252  ReleaseBuffer(buffer);
253  }
254 
255  /* -- init counters -- */
256  indexStat.internal_pages = 0;
257  indexStat.leaf_pages = 0;
258  indexStat.empty_pages = 0;
259  indexStat.deleted_pages = 0;
260 
261  indexStat.max_avail = 0;
262  indexStat.free_space = 0;
263 
264  indexStat.fragments = 0;
265 
266  /*
267  * Scan all blocks except the metapage
268  */
269  nblocks = RelationGetNumberOfBlocks(rel);
270 
271  for (blkno = 1; blkno < nblocks; blkno++)
272  {
273  Buffer buffer;
274  Page page;
275  BTPageOpaque opaque;
276 
278 
279  /* Read and lock buffer */
280  buffer = ReadBufferExtended(rel, MAIN_FORKNUM, blkno, RBM_NORMAL, bstrategy);
281  LockBuffer(buffer, BUFFER_LOCK_SHARE);
282 
283  page = BufferGetPage(buffer);
284  opaque = BTPageGetOpaque(page);
285 
286  /*
287  * Determine page type, and update totals.
288  *
289  * Note that we arbitrarily bucket deleted pages together without
290  * considering if they're leaf pages or internal pages.
291  */
292  if (P_ISDELETED(opaque))
293  indexStat.deleted_pages++;
294  else if (P_IGNORE(opaque))
295  indexStat.empty_pages++; /* this is the "half dead" state */
296  else if (P_ISLEAF(opaque))
297  {
298  int max_avail;
299 
300  max_avail = BLCKSZ - (BLCKSZ - ((PageHeader) page)->pd_special + SizeOfPageHeaderData);
301  indexStat.max_avail += max_avail;
302  indexStat.free_space += PageGetFreeSpace(page);
303 
304  indexStat.leaf_pages++;
305 
306  /*
307  * If the next leaf is on an earlier block, it means a
308  * fragmentation.
309  */
310  if (opaque->btpo_next != P_NONE && opaque->btpo_next < blkno)
311  indexStat.fragments++;
312  }
313  else
314  indexStat.internal_pages++;
315 
316  /* Unlock and release buffer */
318  ReleaseBuffer(buffer);
319  }
320 
322 
323  /*----------------------------
324  * Build a result tuple
325  *----------------------------
326  */
327  {
328  TupleDesc tupleDesc;
329  int j;
330  char *values[10];
331  HeapTuple tuple;
332 
333  /* Build a tuple descriptor for our result type */
334  if (get_call_result_type(fcinfo, NULL, &tupleDesc) != TYPEFUNC_COMPOSITE)
335  elog(ERROR, "return type must be a row type");
336 
337  j = 0;
338  values[j++] = psprintf("%d", indexStat.version);
339  values[j++] = psprintf("%d", indexStat.level);
341  (1 + /* include the metapage in index_size */
342  indexStat.leaf_pages +
343  indexStat.internal_pages +
344  indexStat.deleted_pages +
345  indexStat.empty_pages) * BLCKSZ);
346  values[j++] = psprintf("%u", indexStat.root_blkno);
347  values[j++] = psprintf(INT64_FORMAT, indexStat.internal_pages);
348  values[j++] = psprintf(INT64_FORMAT, indexStat.leaf_pages);
349  values[j++] = psprintf(INT64_FORMAT, indexStat.empty_pages);
350  values[j++] = psprintf(INT64_FORMAT, indexStat.deleted_pages);
351  if (indexStat.max_avail > 0)
352  values[j++] = psprintf("%.2f",
353  100.0 - (double) indexStat.free_space / (double) indexStat.max_avail * 100.0);
354  else
355  values[j++] = pstrdup("NaN");
356  if (indexStat.leaf_pages > 0)
357  values[j++] = psprintf("%.2f",
358  (double) indexStat.fragments / (double) indexStat.leaf_pages * 100.0);
359  else
360  values[j++] = pstrdup("NaN");
361 
363  values);
364 
365  result = HeapTupleGetDatum(tuple);
366  }
367 
368  return result;
369 }
370 
371 /* --------------------------------------------------------
372  * pg_relpages()
373  *
374  * Get the number of pages of the table/index.
375  *
376  * Usage: SELECT pg_relpages('t1');
377  * SELECT pg_relpages('t1_pkey');
378  *
379  * Must keep superuser() check, see above.
380  * --------------------------------------------------------
381  */
382 Datum
384 {
386  Relation rel;
387  RangeVar *relrv;
388 
389  if (!superuser())
390  ereport(ERROR,
391  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
392  errmsg("must be superuser to use pgstattuple functions")));
393 
395  rel = relation_openrv(relrv, AccessShareLock);
396 
398 }
399 
400 /* No need for superuser checks in v1.5, see above */
401 Datum
403 {
405  Relation rel;
406  RangeVar *relrv;
407 
409  rel = relation_openrv(relrv, AccessShareLock);
410 
412 }
413 
414 /* Must keep superuser() check, see above. */
415 Datum
417 {
418  Oid relid = PG_GETARG_OID(0);
419  Relation rel;
420 
421  if (!superuser())
422  ereport(ERROR,
423  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
424  errmsg("must be superuser to use pgstattuple functions")));
425 
426  rel = relation_open(relid, AccessShareLock);
427 
429 }
430 
431 /* No need for superuser checks in v1.5, see above */
432 Datum
434 {
435  Oid relid = PG_GETARG_OID(0);
436  Relation rel;
437 
438  rel = relation_open(relid, AccessShareLock);
439 
441 }
442 
443 static int64
445 {
446  int64 relpages;
447 
448  if (!RELKIND_HAS_STORAGE(rel->rd_rel->relkind))
449  ereport(ERROR,
450  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
451  errmsg("cannot get page count of relation \"%s\"",
453  errdetail_relkind_not_supported(rel->rd_rel->relkind)));
454 
455  /* note: this will work OK on non-local temp tables */
456 
457  relpages = RelationGetNumberOfBlocks(rel);
458 
460 
461  return relpages;
462 }
463 
464 /* ------------------------------------------------------
465  * pgstatginindex()
466  *
467  * Usage: SELECT * FROM pgstatginindex('ginindex');
468  *
469  * Must keep superuser() check, see above.
470  * ------------------------------------------------------
471  */
472 Datum
474 {
475  Oid relid = PG_GETARG_OID(0);
476 
477  if (!superuser())
478  ereport(ERROR,
479  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
480  errmsg("must be superuser to use pgstattuple functions")));
481 
483 }
484 
485 /* No need for superuser checks in v1.5, see above */
486 Datum
488 {
489  Oid relid = PG_GETARG_OID(0);
490 
492 }
493 
494 Datum
496 {
497  Relation rel;
498  Buffer buffer;
499  Page page;
500  GinMetaPageData *metadata;
501  GinIndexStat stats;
502  HeapTuple tuple;
503  TupleDesc tupleDesc;
504  Datum values[3];
505  bool nulls[3] = {false, false, false};
506  Datum result;
507 
508  rel = relation_open(relid, AccessShareLock);
509 
510  if (!IS_INDEX(rel) || !IS_GIN(rel))
511  ereport(ERROR,
512  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
513  errmsg("relation \"%s\" is not a GIN index",
514  RelationGetRelationName(rel))));
515 
516  /*
517  * Reject attempts to read non-local temporary relations; we would be
518  * likely to get wrong data since we have no visibility into the owning
519  * session's local buffers.
520  */
521  if (RELATION_IS_OTHER_TEMP(rel))
522  ereport(ERROR,
523  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
524  errmsg("cannot access temporary indexes of other sessions")));
525 
526  /*
527  * Read metapage
528  */
529  buffer = ReadBuffer(rel, GIN_METAPAGE_BLKNO);
530  LockBuffer(buffer, GIN_SHARE);
531  page = BufferGetPage(buffer);
532  metadata = GinPageGetMeta(page);
533 
534  stats.version = metadata->ginVersion;
535  stats.pending_pages = metadata->nPendingPages;
536  stats.pending_tuples = metadata->nPendingHeapTuples;
537 
538  UnlockReleaseBuffer(buffer);
540 
541  /*
542  * Build a tuple descriptor for our result type
543  */
544  if (get_call_result_type(fcinfo, NULL, &tupleDesc) != TYPEFUNC_COMPOSITE)
545  elog(ERROR, "return type must be a row type");
546 
547  values[0] = Int32GetDatum(stats.version);
548  values[1] = UInt32GetDatum(stats.pending_pages);
549  values[2] = Int64GetDatum(stats.pending_tuples);
550 
551  /*
552  * Build and return the tuple
553  */
554  tuple = heap_form_tuple(tupleDesc, values, nulls);
555  result = HeapTupleGetDatum(tuple);
556 
557  return result;
558 }
559 
560 /* ------------------------------------------------------
561  * pgstathashindex()
562  *
563  * Usage: SELECT * FROM pgstathashindex('hashindex');
564  * ------------------------------------------------------
565  */
566 Datum
568 {
569  Oid relid = PG_GETARG_OID(0);
570  BlockNumber nblocks;
571  BlockNumber blkno;
572  Relation rel;
573  HashIndexStat stats;
574  BufferAccessStrategy bstrategy;
575  HeapTuple tuple;
576  TupleDesc tupleDesc;
577  Datum values[8];
578  bool nulls[8] = {0};
579  Buffer metabuf;
580  HashMetaPage metap;
581  float8 free_percent;
582  uint64 total_space;
583 
584  rel = index_open(relid, AccessShareLock);
585 
586  /* index_open() checks that it's an index */
587  if (!IS_HASH(rel))
588  ereport(ERROR,
589  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
590  errmsg("relation \"%s\" is not a hash index",
591  RelationGetRelationName(rel))));
592 
593  /*
594  * Reject attempts to read non-local temporary relations; we would be
595  * likely to get wrong data since we have no visibility into the owning
596  * session's local buffers.
597  */
598  if (RELATION_IS_OTHER_TEMP(rel))
599  ereport(ERROR,
600  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
601  errmsg("cannot access temporary indexes of other sessions")));
602 
603  /* Get the information we need from the metapage. */
604  memset(&stats, 0, sizeof(stats));
606  metap = HashPageGetMeta(BufferGetPage(metabuf));
607  stats.version = metap->hashm_version;
608  stats.space_per_page = metap->hashm_bsize;
609  _hash_relbuf(rel, metabuf);
610 
611  /* Get the current relation length */
612  nblocks = RelationGetNumberOfBlocks(rel);
613 
614  /* prepare access strategy for this index */
615  bstrategy = GetAccessStrategy(BAS_BULKREAD);
616 
617  /* Start from blkno 1 as 0th block is metapage */
618  for (blkno = 1; blkno < nblocks; blkno++)
619  {
620  Buffer buf;
621  Page page;
622 
624 
626  bstrategy);
628  page = (Page) BufferGetPage(buf);
629 
630  if (PageIsNew(page))
631  stats.unused_pages++;
632  else if (PageGetSpecialSize(page) !=
633  MAXALIGN(sizeof(HashPageOpaqueData)))
634  ereport(ERROR,
635  (errcode(ERRCODE_INDEX_CORRUPTED),
636  errmsg("index \"%s\" contains corrupted page at block %u",
639  else
640  {
641  HashPageOpaque opaque;
642  int pagetype;
643 
644  opaque = HashPageGetOpaque(page);
645  pagetype = opaque->hasho_flag & LH_PAGE_TYPE;
646 
647  if (pagetype == LH_BUCKET_PAGE)
648  {
649  stats.bucket_pages++;
650  GetHashPageStats(page, &stats);
651  }
652  else if (pagetype == LH_OVERFLOW_PAGE)
653  {
654  stats.overflow_pages++;
655  GetHashPageStats(page, &stats);
656  }
657  else if (pagetype == LH_BITMAP_PAGE)
658  stats.bitmap_pages++;
659  else if (pagetype == LH_UNUSED_PAGE)
660  stats.unused_pages++;
661  else
662  ereport(ERROR,
663  (errcode(ERRCODE_INDEX_CORRUPTED),
664  errmsg("unexpected page type 0x%04X in HASH index \"%s\" block %u",
665  opaque->hasho_flag, RelationGetRelationName(rel),
667  }
669  }
670 
671  /* Done accessing the index */
673 
674  /* Count unused pages as free space. */
675  stats.free_space += (uint64) stats.unused_pages * stats.space_per_page;
676 
677  /*
678  * Total space available for tuples excludes the metapage and the bitmap
679  * pages.
680  */
681  total_space = (uint64) (nblocks - (stats.bitmap_pages + 1)) *
682  stats.space_per_page;
683 
684  if (total_space == 0)
685  free_percent = 0.0;
686  else
687  free_percent = 100.0 * stats.free_space / total_space;
688 
689  /*
690  * Build a tuple descriptor for our result type
691  */
692  if (get_call_result_type(fcinfo, NULL, &tupleDesc) != TYPEFUNC_COMPOSITE)
693  elog(ERROR, "return type must be a row type");
694 
695  tupleDesc = BlessTupleDesc(tupleDesc);
696 
697  /*
698  * Build and return the tuple
699  */
700  values[0] = Int32GetDatum(stats.version);
701  values[1] = Int64GetDatum((int64) stats.bucket_pages);
702  values[2] = Int64GetDatum((int64) stats.overflow_pages);
703  values[3] = Int64GetDatum((int64) stats.bitmap_pages);
704  values[4] = Int64GetDatum((int64) stats.unused_pages);
705  values[5] = Int64GetDatum(stats.live_items);
706  values[6] = Int64GetDatum(stats.dead_items);
707  values[7] = Float8GetDatum(free_percent);
708  tuple = heap_form_tuple(tupleDesc, values, nulls);
709 
711 }
712 
713 /* -------------------------------------------------
714  * GetHashPageStats()
715  *
716  * Collect statistics of single hash page
717  * -------------------------------------------------
718  */
719 static void
721 {
722  OffsetNumber maxoff = PageGetMaxOffsetNumber(page);
723  int off;
724 
725  /* count live and dead tuples, and free space */
726  for (off = FirstOffsetNumber; off <= maxoff; off++)
727  {
728  ItemId id = PageGetItemId(page, off);
729 
730  if (!ItemIdIsDead(id))
731  stats->live_items++;
732  else
733  stats->dead_items++;
734  }
735  stats->free_space += PageGetExactFreeSpace(page);
736 }
uint32 BlockNumber
Definition: block.h:31
static Datum values[MAXATTR]
Definition: bootstrap.c:156
int Buffer
Definition: buf.h:23
BlockNumber BufferGetBlockNumber(Buffer buffer)
Definition: bufmgr.c:3290
void ReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:4480
void UnlockReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:4497
void LockBuffer(Buffer buffer, int mode)
Definition: bufmgr.c:4715
Buffer ReadBufferExtended(Relation reln, ForkNumber forkNum, BlockNumber blockNum, ReadBufferMode mode, BufferAccessStrategy strategy)
Definition: bufmgr.c:755
Buffer ReadBuffer(Relation reln, BlockNumber blockNum)
Definition: bufmgr.c:708
@ BAS_BULKREAD
Definition: bufmgr.h:35
#define BUFFER_LOCK_UNLOCK
Definition: bufmgr.h:157
#define BUFFER_LOCK_SHARE
Definition: bufmgr.h:158
#define RelationGetNumberOfBlocks(reln)
Definition: bufmgr.h:227
static Page BufferGetPage(Buffer buffer)
Definition: bufmgr.h:355
@ RBM_NORMAL
Definition: bufmgr.h:44
Size PageGetExactFreeSpace(Page page)
Definition: bufpage.c:958
Size PageGetFreeSpace(Page page)
Definition: bufpage.c:907
PageHeaderData * PageHeader
Definition: bufpage.h:170
Pointer Page
Definition: bufpage.h:78
#define SizeOfPageHeaderData
Definition: bufpage.h:213
static ItemId PageGetItemId(Page page, OffsetNumber offsetNumber)
Definition: bufpage.h:240
static bool PageIsNew(Page page)
Definition: bufpage.h:230
static OffsetNumber PageGetMaxOffsetNumber(Page page)
Definition: bufpage.h:369
static uint16 PageGetSpecialSize(Page page)
Definition: bufpage.h:313
unsigned int uint32
Definition: c.h:490
#define MAXALIGN(LEN)
Definition: c.h:795
signed int int32
Definition: c.h:478
#define INT64_FORMAT
Definition: c.h:532
double float8
Definition: c.h:614
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
TupleDesc BlessTupleDesc(TupleDesc tupdesc)
Definition: execTuples.c:2072
HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values)
Definition: execTuples.c:2136
AttInMetadata * TupleDescGetAttInMetadata(TupleDesc tupdesc)
Definition: execTuples.c:2087
Datum Int64GetDatum(int64 X)
Definition: fmgr.c:1778
Datum Float8GetDatum(float8 X)
Definition: fmgr.c:1787
#define PG_GETARG_OID(n)
Definition: fmgr.h:275
#define PG_GETARG_TEXT_PP(n)
Definition: fmgr.h:309
#define PG_RETURN_INT64(x)
Definition: fmgr.h:368
#define PG_RETURN_DATUM(x)
Definition: fmgr.h:353
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
BufferAccessStrategy GetAccessStrategy(BufferAccessStrategyType btype)
Definition: freelist.c:541
TypeFuncClass get_call_result_type(FunctionCallInfo fcinfo, Oid *resultTypeId, TupleDesc *resultTupleDesc)
Definition: funcapi.c:276
@ TYPEFUNC_COMPOSITE
Definition: funcapi.h:149
static Datum HeapTupleGetDatum(const HeapTupleData *tuple)
Definition: funcapi.h:230
#define GIN_SHARE
Definition: gin_private.h:49
#define GIN_METAPAGE_BLKNO
Definition: ginblock.h:51
#define GinPageGetMeta(p)
Definition: ginblock.h:104
#define HashPageGetOpaque(page)
Definition: hash.h:88
#define LH_BUCKET_PAGE
Definition: hash.h:55
#define LH_UNUSED_PAGE
Definition: hash.h:53
#define LH_META_PAGE
Definition: hash.h:57
#define HashPageGetMeta(page)
Definition: hash.h:323
#define HASH_READ
Definition: hash.h:339
#define HASH_METAPAGE
Definition: hash.h:198
#define LH_PAGE_TYPE
Definition: hash.h:63
#define LH_BITMAP_PAGE
Definition: hash.h:56
#define LH_OVERFLOW_PAGE
Definition: hash.h:54
void _hash_relbuf(Relation rel, Buffer buf)
Definition: hashpage.c:266
Buffer _hash_getbuf(Relation rel, BlockNumber blkno, int access, int flags)
Definition: hashpage.c:70
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, Datum *values, bool *isnull)
Definition: heaptuple.c:1020
void index_close(Relation relation, LOCKMODE lockmode)
Definition: indexam.c:158
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition: indexam.c:132
int j
Definition: isn.c:74
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
#define ItemIdIsDead(itemId)
Definition: itemid.h:113
#define AccessShareLock
Definition: lockdefs.h:36
char * pstrdup(const char *in)
Definition: mcxt.c:1644
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:121
RangeVar * makeRangeVarFromNameList(List *names)
Definition: namespace.c:3105
#define BTPageGetMeta(p)
Definition: nbtree.h:121
#define P_ISLEAF(opaque)
Definition: nbtree.h:220
#define BTPageGetOpaque(page)
Definition: nbtree.h:73
#define P_ISDELETED(opaque)
Definition: nbtree.h:222
#define P_NONE
Definition: nbtree.h:212
#define P_IGNORE(opaque)
Definition: nbtree.h:225
uint16 OffsetNumber
Definition: off.h:24
#define FirstOffsetNumber
Definition: off.h:27
int errdetail_relkind_not_supported(char relkind)
Definition: pg_class.c:24
NameData relname
Definition: pg_class.h:38
static char * buf
Definition: pg_test_fsync.c:67
Datum pgstatindexbyid(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:188
Datum pgstatindexbyid_v1_5(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:205
Datum pgstatindex_v1_5(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:170
#define IS_BTREE(r)
Definition: pgstatindex.c:71
#define IS_HASH(r)
Definition: pgstatindex.c:73
static void GetHashPageStats(Page page, HashIndexStat *stats)
Definition: pgstatindex.c:720
static int64 pg_relpages_impl(Relation rel)
Definition: pgstatindex.c:444
Datum pgstatginindex_v1_5(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:487
Datum pg_relpagesbyid(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:416
Datum pg_relpages(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:383
Datum pgstatginindex_internal(Oid relid, FunctionCallInfo fcinfo)
Definition: pgstatindex.c:495
Datum pg_relpages_v1_5(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:402
struct HashIndexStat HashIndexStat
#define IS_INDEX(r)
Definition: pgstatindex.c:70
static Datum pgstatindex_impl(Relation rel, FunctionCallInfo fcinfo)
Definition: pgstatindex.c:216
Datum pg_relpagesbyid_v1_5(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:433
PG_FUNCTION_INFO_V1(pgstatindex)
Datum pgstatginindex(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:473
#define IS_GIN(r)
Definition: pgstatindex.c:72
struct GinIndexStat GinIndexStat
Datum pgstathashindex(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:567
struct BTIndexStat BTIndexStat
Datum pgstatindex(PG_FUNCTION_ARGS)
Definition: pgstatindex.c:145
uintptr_t Datum
Definition: postgres.h:64
static Datum Int32GetDatum(int32 X)
Definition: postgres.h:212
static Datum UInt32GetDatum(uint32 X)
Definition: postgres.h:232
unsigned int Oid
Definition: postgres_ext.h:31
char * psprintf(const char *fmt,...)
Definition: psprintf.c:46
#define RelationGetRelationName(relation)
Definition: rel.h:538
#define RELATION_IS_OTHER_TEMP(relation)
Definition: rel.h:659
@ MAIN_FORKNUM
Definition: relpath.h:50
void relation_close(Relation relation, LOCKMODE lockmode)
Definition: relation.c:206
Relation relation_openrv(const RangeVar *relation, LOCKMODE lockmode)
Definition: relation.c:138
Relation relation_open(Oid relationId, LOCKMODE lockmode)
Definition: relation.c:48
uint64 max_avail
Definition: pgstatindex.c:91
uint32 level
Definition: pgstatindex.c:83
uint64 empty_pages
Definition: pgstatindex.c:88
uint64 deleted_pages
Definition: pgstatindex.c:89
uint64 internal_pages
Definition: pgstatindex.c:86
uint64 leaf_pages
Definition: pgstatindex.c:87
uint32 version
Definition: pgstatindex.c:82
uint64 fragments
Definition: pgstatindex.c:94
BlockNumber root_blkno
Definition: pgstatindex.c:84
uint64 free_space
Definition: pgstatindex.c:92
uint32 btm_level
Definition: nbtree.h:108
uint32 btm_version
Definition: nbtree.h:106
BlockNumber btm_root
Definition: nbtree.h:107
BlockNumber btpo_next
Definition: nbtree.h:65
BlockNumber pending_pages
Definition: pgstatindex.c:106
int64 pending_tuples
Definition: pgstatindex.c:107
int32 ginVersion
Definition: ginblock.h:99
BlockNumber nPendingPages
Definition: ginblock.h:73
int64 nPendingHeapTuples
Definition: ginblock.h:74
BlockNumber bitmap_pages
Definition: pgstatindex.c:122
BlockNumber overflow_pages
Definition: pgstatindex.c:121
BlockNumber bucket_pages
Definition: pgstatindex.c:120
BlockNumber unused_pages
Definition: pgstatindex.c:123
uint64 free_space
Definition: pgstatindex.c:127
int64 dead_items
Definition: pgstatindex.c:126
int32 space_per_page
Definition: pgstatindex.c:118
int64 live_items
Definition: pgstatindex.c:125
uint32 hashm_version
Definition: hash.h:247
uint16 hashm_bsize
Definition: hash.h:250
uint16 hasho_flag
Definition: hash.h:82
Form_pg_class rd_rel
Definition: rel.h:111
Definition: c.h:671
bool superuser(void)
Definition: superuser.c:46
List * textToQualifiedNameList(text *textval)
Definition: varlena.c:3396