diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-21 11:49:41 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-21 11:49:41 +0000 |
commit | 82b83f6f71a1c9ab6544b9572c97dbebd70b446c (patch) | |
tree | e3fff30c0c3c247b6e831181b2dea6bd5739d302 /src/backend/access/common/indextuple.c | |
parent | 9a7fda57eefacf8241809ec00210b9d1be5f5878 (diff) | |
download | postgresql-82b83f6f71a1c9ab6544b9572c97dbebd70b446c.tar.gz postgresql-82b83f6f71a1c9ab6544b9572c97dbebd70b446c.zip |
Cosmetic changes to ordering of #include files
Diffstat (limited to 'src/backend/access/common/indextuple.c')
-rw-r--r-- | src/backend/access/common/indextuple.c | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/src/backend/access/common/indextuple.c b/src/backend/access/common/indextuple.c index b8bfe52377e..9e52ad3e449 100644 --- a/src/backend/access/common/indextuple.c +++ b/src/backend/access/common/indextuple.c @@ -8,46 +8,46 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.6 1996/10/21 07:18:08 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.7 1996/10/21 11:49:37 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include "postgres.h" +#include <string.h> +#include <time.h> -#include "storage/block.h" -#include "storage/off.h" -#include "catalog/pg_attribute.h" +#include "postgres.h" #include "access/attnum.h" -#include "nodes/pg_list.h" -#include "storage/itemptr.h" -#include "access/tupdesc.h" -#include "access/itup.h" - -#include "utils/memutils.h" -#include "access/ibit.h" - #include "access/tupmacs.h" - -#include <string.h> - -#include "utils/palloc.h" - -#include <time.h> -#include "storage/fd.h" #include "catalog/pg_am.h" +#include "catalog/pg_attribute.h" #include "catalog/pg_class.h" #include "nodes/nodes.h" -#include "rewrite/prs2lock.h" +#include "nodes/pg_list.h" +#include "storage/block.h" +#include "storage/buf.h" +#include "storage/fd.h" +#include "storage/off.h" +#include "utils/memutils.h" +#include "utils/nabstime.h" +#include "utils/palloc.h" + +#include "access/ibit.h" #include "access/skey.h" +#include "access/tupdesc.h" +#include "rewrite/prs2lock.h" +#include "storage/itemptr.h" + #include "access/strat.h" -#include "utils/rel.h" -#include "utils/nabstime.h" + +#include "access/itup.h" #include "access/htup.h" -#include "storage/itemptr.h" +#include "utils/rel.h" + #include "utils/tqual.h" -#include "storage/buf.h" + #include "access/relscan.h" + #include "access/heapam.h" static Size IndexInfoFindDataOffset(unsigned short t_info); |