diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 23:43:09 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 23:50:49 -0400 |
commit | 9df55c8c3f0eba77de57006999d5700292fa9d33 (patch) | |
tree | b870f631d17abbb8134dd757b725d5afd8285a3a /contrib/tablefunc/tablefunc.c | |
parent | 1a26e1c766fa84c2f93473eed83f0133d4b2ac5f (diff) | |
download | postgresql-9df55c8c3f0eba77de57006999d5700292fa9d33.tar.gz postgresql-9df55c8c3f0eba77de57006999d5700292fa9d33.zip |
Fix assorted compilation failures in contrib
Evidently I failed to test a compile after my earlier header shuffling.
Diffstat (limited to 'contrib/tablefunc/tablefunc.c')
-rw-r--r-- | contrib/tablefunc/tablefunc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/tablefunc/tablefunc.c b/contrib/tablefunc/tablefunc.c index 65a470114ba..963a88fa104 100644 --- a/contrib/tablefunc/tablefunc.c +++ b/contrib/tablefunc/tablefunc.c @@ -35,8 +35,9 @@ #include <math.h> #include "catalog/pg_type.h" -#include "funcapi.h" #include "executor/spi.h" +#include "funcapi.h" +#include "lib/stringinfo.h" #include "miscadmin.h" #include "utils/builtins.h" |