aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-07-11 17:04:13 +0000
committerBruce Momjian <bruce@momjian.us>2006-07-11 17:04:13 +0000
commit3a534ade394c8957b117ef1923c4e8c2fb2ffab1 (patch)
tree0681f48e3236e8bac101a4d0b08008126b5706cc /contrib
parent0031f99bfadf61a1a49c8d351ab915446efa8f83 (diff)
downloadpostgresql-3a534ade394c8957b117ef1923c4e8c2fb2ffab1.tar.gz
postgresql-3a534ade394c8957b117ef1923c4e8c2fb2ffab1.zip
Alphabetically order reference to include files, "G" - "M".
Diffstat (limited to 'contrib')
-rw-r--r--contrib/intagg/int_aggregate.c8
-rw-r--r--contrib/lo/lo.c10
2 files changed, 9 insertions, 9 deletions
diff --git a/contrib/intagg/int_aggregate.c b/contrib/intagg/int_aggregate.c
index d75ce361061..6567f7f0269 100644
--- a/contrib/intagg/int_aggregate.c
+++ b/contrib/intagg/int_aggregate.c
@@ -5,7 +5,7 @@
* DMN Digital Music Network.
* www.dmn.com
*
- * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.24 2006/05/30 22:12:13 tgl Exp $
+ * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.25 2006/07/11 17:04:12 momjian Exp $
*
* Copyright (C) Digital Music Network
* December 20, 2001
@@ -20,18 +20,18 @@
#include <sys/types.h>
#include "access/heapam.h"
+#include "access/tupmacs.h"
+#include "access/xact.h"
#include "catalog/indexing.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "executor/executor.h"
-#include "utils/syscache.h"
-#include "access/tupmacs.h"
-#include "access/xact.h"
#include "fmgr.h"
#include "miscadmin.h"
#include "utils/array.h"
#include "utils/builtins.h"
#include "utils/memutils.h"
+#include "utils/syscache.h"
#include "utils/lsyscache.h"
PG_MODULE_MAGIC;
diff --git a/contrib/lo/lo.c b/contrib/lo/lo.c
index c5cf2cf75b1..2e37a28591e 100644
--- a/contrib/lo/lo.c
+++ b/contrib/lo/lo.c
@@ -1,19 +1,19 @@
/*
* PostgreSQL definitions for managed Large Objects.
*
- * $PostgreSQL: pgsql/contrib/lo/lo.c,v 1.16 2006/05/30 22:12:13 tgl Exp $
+ * $PostgreSQL: pgsql/contrib/lo/lo.c,v 1.17 2006/07/11 17:04:12 momjian Exp $
*
*/
#include "postgres.h"
-/* Required for largeobjects */
-#include "libpq/libpq-fs.h"
-#include "libpq/be-fsstubs.h"
-
/* Required for SPI */
#include "executor/spi.h"
+/* Required for largeobjects */
+#include "libpq/be-fsstubs.h"
+#include "libpq/libpq-fs.h"
+
/* Required for triggers */
#include "commands/trigger.h"