aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/cluster.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-16 05:00:38 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-16 05:00:38 +0000
commita71802e12ec04fed791ea47f24ea30e0f5d9f5c2 (patch)
tree80d29372e0bbdd85bc4938ec048fa565c98eac12 /src/backend/commands/cluster.c
parent9b645d481ccfa3638de915e0f75e3dfe9d520b79 (diff)
downloadpostgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.tar.gz
postgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.zip
Final cleanup.
Diffstat (limited to 'src/backend/commands/cluster.c')
-rw-r--r--src/backend/commands/cluster.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c
index f1fbe352915..a02aba5fa05 100644
--- a/src/backend/commands/cluster.c
+++ b/src/backend/commands/cluster.c
@@ -14,7 +14,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.42 1999/07/15 23:03:06 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.43 1999/07/16 04:58:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,19 +22,17 @@
#include "postgres.h"
-#include "catalog/heap.h"
-#include "access/heapam.h"
#include "access/genam.h"
-#include "utils/syscache.h"
+#include "access/heapam.h"
+#include "catalog/heap.h"
#include "catalog/index.h"
+#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "commands/cluster.h"
#include "commands/rename.h"
-#include "utils/builtins.h"
-#include "catalog/pg_proc.h"
#include "optimizer/internal.h"
-#ifndef NO_SECURITY
-#endif /* !NO_SECURITY */
+#include "utils/builtins.h"
+#include "utils/syscache.h"
static Relation copy_heap(Oid OIDOldHeap);
static void copy_index(Oid OIDOldIndex, Oid OIDNewHeap);