diff options
author | Robert Haas | 2014-01-02 20:09:21 +0000 |
---|---|---|
committer | Robert Haas | 2014-01-02 20:15:51 +0000 |
commit | 3cff1879f8d03cb729368722ca823a4bf74c0cac (patch) | |
tree | 7d7a6e2b6500dfb6801e33cf9b5da752f6d5d31c /src/include/commands | |
parent | 4cf81b737d5bb5f695671479c427c78f95c82119 (diff) |
Aggressively freeze tables when CLUSTER or VACUUM FULL rewrites them.
We haven't wanted to do this in the past on the grounds that in rare
cases the original xmin value will be needed for forensic purposes, but
commit 37484ad2aacef5ec794f4dd3d5cf814475180a78 removes that objection,
so now we can.
Per extensive discussion, among many people, on pgsql-hackers.
Diffstat (limited to 'src/include/commands')
-rw-r--r-- | src/include/commands/cluster.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/commands/cluster.h b/src/include/commands/cluster.h index a88731832ec..5dfa9981f44 100644 --- a/src/include/commands/cluster.h +++ b/src/include/commands/cluster.h @@ -20,7 +20,7 @@ extern void cluster(ClusterStmt *stmt, bool isTopLevel); extern void cluster_rel(Oid tableOid, Oid indexOid, bool recheck, - bool verbose, int freeze_min_age, int freeze_table_age); + bool verbose); extern void check_index_is_clusterable(Relation OldHeap, Oid indexOid, bool recheck, LOCKMODE lockmode); extern void mark_index_clustered(Relation rel, Oid indexOid, bool is_internal); |