diff options
author | Alvaro Herrera | 2008-03-26 21:10:39 +0000 |
---|---|---|
committer | Alvaro Herrera | 2008-03-26 21:10:39 +0000 |
commit | 73b0300b2a9c170f67f5202f5003be10b529e0f5 (patch) | |
tree | 28c9615e6224095f0273e458a4d15546ca25820f /contrib/pgrowlocks/pgrowlocks.c | |
parent | 78f02ca1f5443a43bc9fc47e41c7ac7c0f9717a3 (diff) |
Move the HTSU_Result enum definition into snapshot.h, to avoid including
tqual.h into heapam.h. This makes all inclusion of tqual.h explicit.
I also sorted alphabetically the includes on some source files.
Diffstat (limited to 'contrib/pgrowlocks/pgrowlocks.c')
-rw-r--r-- | contrib/pgrowlocks/pgrowlocks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pgrowlocks/pgrowlocks.c b/contrib/pgrowlocks/pgrowlocks.c index fb19983bf86..e62df9257ee 100644 --- a/contrib/pgrowlocks/pgrowlocks.c +++ b/contrib/pgrowlocks/pgrowlocks.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.c,v 1.8 2007/11/30 21:22:53 tgl Exp $ + * $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.c,v 1.9 2008/03/26 21:10:36 alvherre Exp $ * * Copyright (c) 2005-2006 Tatsuo Ishii * @@ -33,6 +33,7 @@ #include "storage/procarray.h" #include "utils/acl.h" #include "utils/builtins.h" +#include "utils/tqual.h" PG_MODULE_MAGIC; |