|
8 | 8 | * Darko Prenosil <Darko.Prenosil@finteh.hr> |
9 | 9 | * Shridhar Daithankar <shridhar_daithankar@persistent.co.in> |
10 | 10 | * |
11 | | - * $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.56 2006/06/21 16:43:11 joe Exp $ |
| 11 | + * $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.57 2006/07/11 16:35:31 momjian Exp $ |
12 | 12 | * Copyright (c) 2001-2006, PostgreSQL Global Development Group |
13 | 13 | * ALL RIGHTS RESERVED; |
14 | 14 | * |
|
37 | 37 | #include "libpq-fe.h" |
38 | 38 | #include "fmgr.h" |
39 | 39 | #include "funcapi.h" |
40 | | -#include "access/tupdesc.h" |
41 | 40 | #include "access/heapam.h" |
| 41 | +#include "access/tupdesc.h" |
42 | 42 | #include "catalog/namespace.h" |
43 | 43 | #include "catalog/pg_index.h" |
44 | 44 | #include "catalog/pg_type.h" |
45 | 45 | #include "executor/executor.h" |
46 | 46 | #include "executor/spi.h" |
47 | 47 | #include "lib/stringinfo.h" |
48 | | -#include "nodes/nodes.h" |
49 | 48 | #include "nodes/execnodes.h" |
| 49 | +#include "nodes/nodes.h" |
50 | 50 | #include "nodes/pg_list.h" |
51 | 51 | #include "parser/parse_type.h" |
52 | 52 | #include "tcop/tcopprot.h" |
| 53 | +#include "utils/array.h" |
53 | 54 | #include "utils/builtins.h" |
| 55 | +#include "utils/dynahash.h" |
54 | 56 | #include "utils/fmgroids.h" |
55 | | -#include "utils/array.h" |
| 57 | +#include "utils/hsearch.h" |
56 | 58 | #include "utils/lsyscache.h" |
57 | 59 | #include "utils/syscache.h" |
58 | | -#include "utils/dynahash.h" |
59 | | -#include "utils/hsearch.h" |
60 | 60 | #include "utils/memutils.h" |
61 | 61 |
|
62 | 62 | #include "dblink.h" |
|
0 commit comments