mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03:00
Allow CLUSTER on partitioned tables
This is essentially the same as applying VACUUM FULL to a partitioned table, which has been supported since commit3c3bb99330
(March 2017). While there's no great use case in applying CLUSTER to partitioned tables, we don't have any strong reason not to allow it either. For now, partitioned indexes cannot be marked clustered, so an index must always be specified. While at it, rename some variables that were RangeVars during the development that led to8bc717cb88
but never made it that way to the source tree; there's no need to perpetuate names that have always been more confusing than helpful. Author: Justin Pryzby <pryzby@telsasoft.com> Reviewed-by: Matthias van de Meent <boekewurm+postgres@gmail.com> Discussion: https://postgr.es/m/20201028003312.GU9241@telsasoft.com Discussion: https://postgr.es/m/20200611153502.GT14879@telsasoft.com
This commit is contained in:
@@ -19,9 +19,11 @@
|
||||
#include "utils/relcache.h"
|
||||
|
||||
|
||||
/* flag bits for ClusterParams->flags */
|
||||
#define CLUOPT_RECHECK 0x01 /* recheck relation state */
|
||||
#define CLUOPT_VERBOSE 0x02 /* print progress info */
|
||||
/* flag bits for ClusterParams->options */
|
||||
#define CLUOPT_VERBOSE 0x01 /* print progress info */
|
||||
#define CLUOPT_RECHECK 0x02 /* recheck relation state */
|
||||
#define CLUOPT_RECHECK_ISCLUSTERED 0x04 /* recheck relation state for
|
||||
* indisclustered */
|
||||
|
||||
/* options for CLUSTER */
|
||||
typedef struct ClusterParams
|
||||
|
Reference in New Issue
Block a user