1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Final cleanup.

This commit is contained in:
Bruce Momjian
1999-07-16 05:00:38 +00:00
parent 9b645d481c
commit a71802e12e
210 changed files with 833 additions and 907 deletions

View File

@ -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);