diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-02 22:25:10 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-02 22:25:10 +0000 |
| commit | e57345975cf8ddbf044bfd164359e74e1a9bcab2 (patch) | |
| tree | 6c838a5280564bef5a86cf6892920478f5a57937 /src/include/access | |
| parent | d3171dd64b33160412b5d133861744215aa78c15 (diff) | |
| download | postgresql-e57345975cf8ddbf044bfd164359e74e1a9bcab2.tar.gz | |
Clean up API for ambulkdelete/amvacuumcleanup as per today's discussion.
This formulation requires every AM to provide amvacuumcleanup, unlike before,
but it's surely a whole lot cleaner. Also, add an 'amstorage' column to
pg_am so that we can get rid of hardwired knowledge in DefineOpClass().
Diffstat (limited to 'src/include/access')
| -rw-r--r-- | src/include/access/genam.h | 48 | ||||
| -rw-r--r-- | src/include/access/hash.h | 3 |
2 files changed, 30 insertions, 21 deletions
diff --git a/src/include/access/genam.h b/src/include/access/genam.h index 4a9284e0a7..67a9ef60ee 100644 --- a/src/include/access/genam.h +++ b/src/include/access/genam.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/genam.h,v 1.58 2006/03/05 15:58:53 momjian Exp $ + * $PostgreSQL: pgsql/src/include/access/genam.h,v 1.59 2006/05/02 22:25:10 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -21,13 +21,29 @@ /* - * Struct for statistics returned by bulk-delete operation + * Struct for input arguments passed to ambulkdelete and amvacuumcleanup * - * This is now also passed to the index AM's vacuum-cleanup operation, - * if it has one, which can modify the results as needed. Note that - * an index AM could choose to have bulk-delete return a larger struct - * of which this is just the first field; this provides a way for bulk-delete - * to communicate additional private data to vacuum-cleanup. + * Note that num_heap_tuples will not be valid during ambulkdelete, + * only amvacuumcleanup. + */ +typedef struct IndexVacuumInfo +{ + Relation index; /* the index being vacuumed */ + bool vacuum_full; /* VACUUM FULL (we have exclusive lock) */ + int message_level; /* ereport level for progress messages */ + double num_heap_tuples; /* tuples remaining in heap */ +} IndexVacuumInfo; + +/* + * Struct for statistics returned by ambulkdelete and amvacuumcleanup + * + * This struct is normally allocated by the first ambulkdelete call and then + * passed along through subsequent ones until amvacuumcleanup; however, + * amvacuumcleanup must be prepared to allocate it in the case where no + * ambulkdelete calls were made (because no tuples needed deletion). + * Note that an index AM could choose to return a larger struct + * of which this is just the first field; this provides a way for ambulkdelete + * to communicate additional private data to amvacuumcleanup. * * Note: pages_removed is the amount by which the index physically shrank, * if any (ie the change in its total size on disk). pages_deleted and @@ -36,9 +52,9 @@ typedef struct IndexBulkDeleteResult { BlockNumber num_pages; /* pages remaining in index */ - BlockNumber pages_removed; /* # removed by bulk-delete operation */ + BlockNumber pages_removed; /* # removed during vacuum operation */ double num_index_tuples; /* tuples remaining */ - double tuples_removed; /* # removed by bulk-delete operation */ + double tuples_removed; /* # removed during vacuum operation */ BlockNumber pages_deleted; /* # unused pages in index */ BlockNumber pages_free; /* # pages available for reuse */ } IndexBulkDeleteResult; @@ -46,14 +62,6 @@ typedef struct IndexBulkDeleteResult /* Typedef for callback function to determine if a tuple is bulk-deletable */ typedef bool (*IndexBulkDeleteCallback) (ItemPointer itemptr, void *state); -/* Struct for additional arguments passed to vacuum-cleanup operation */ -typedef struct IndexVacuumCleanupInfo -{ - bool vacuum_full; /* VACUUM FULL (we have exclusive lock) */ - int message_level; /* ereport level for progress messages */ - double num_heap_tuples; /* tuples remaining in heap */ -} IndexVacuumCleanupInfo; - /* Struct for heap-or-index scans of system tables */ typedef struct SysScanDescData { @@ -98,11 +106,11 @@ extern bool index_getmulti(IndexScanDesc scan, ItemPointer tids, int32 max_tids, int32 *returned_tids); -extern IndexBulkDeleteResult *index_bulk_delete(Relation indexRelation, +extern IndexBulkDeleteResult *index_bulk_delete(IndexVacuumInfo *info, + IndexBulkDeleteResult *stats, IndexBulkDeleteCallback callback, void *callback_state); -extern IndexBulkDeleteResult *index_vacuum_cleanup(Relation indexRelation, - IndexVacuumCleanupInfo *info, +extern IndexBulkDeleteResult *index_vacuum_cleanup(IndexVacuumInfo *info, IndexBulkDeleteResult *stats); extern RegProcedure index_getprocid(Relation irel, AttrNumber attnum, uint16 procnum); diff --git a/src/include/access/hash.h b/src/include/access/hash.h index 6f22d50da7..226b164ac8 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/hash.h,v 1.68 2006/03/31 23:32:06 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/hash.h,v 1.69 2006/05/02 22:25:10 tgl Exp $ * * NOTES * modeled after Margo Seltzer's hash implementation for unix. @@ -233,6 +233,7 @@ extern Datum hashendscan(PG_FUNCTION_ARGS); extern Datum hashmarkpos(PG_FUNCTION_ARGS); extern Datum hashrestrpos(PG_FUNCTION_ARGS); extern Datum hashbulkdelete(PG_FUNCTION_ARGS); +extern Datum hashvacuumcleanup(PG_FUNCTION_ARGS); /* * Datatype-specific hash functions in hashfunc.c. |
