diff options
author | Neil Conway <neilc@samurai.com> | 2006-06-28 22:11:01 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-06-28 22:11:01 +0000 |
commit | 4252f835addf955ad6bba4a1fd6f38f8a8726d95 (patch) | |
tree | 9c17be8996cccc25d4a80e673c13aabae26f1613 /src | |
parent | 711e0c63bb893034b22d2ea9114d3c49399c4ccf (diff) | |
download | postgresql-4252f835addf955ad6bba4a1fd6f38f8a8726d95.tar.gz postgresql-4252f835addf955ad6bba4a1fd6f38f8a8726d95.zip |
Add missing #include directive: pg_constraint.h declares some functions
whose prototypes include the "List" type, so it ought to include the
list header file.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_constraint.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/catalog/pg_constraint.h b/src/include/catalog/pg_constraint.h index 7bcf6e8495d..eb9b249b902 100644 --- a/src/include/catalog/pg_constraint.h +++ b/src/include/catalog/pg_constraint.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/pg_constraint.h,v 1.22 2006/03/05 15:58:54 momjian Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_constraint.h,v 1.23 2006/06/28 22:11:01 neilc Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -19,6 +19,8 @@ #ifndef PG_CONSTRAINT_H #define PG_CONSTRAINT_H +#include "nodes/pg_list.h" + /* ---------------- * postgres.h contains the system type definitions and the * CATALOG(), BKI_BOOTSTRAP and DATA() sugar words so this file |