diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-03-14 11:47:03 -0400 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-03-14 11:47:03 -0400 |
| commit | 810d6df0818dae0df98e54b1f52365ba00ace2b2 (patch) | |
| tree | bfcc6fd18e8fa001026f2dfce13568075be61c25 /contrib/intarray/_int_bool.c | |
| parent | 172c53e924021791621e97afd2e88eeea5ce5418 (diff) | |
Add missing #include.
Commit 31400a673 and siblings added a check_stack_depth() call in
contrib/intarray/_int_bool.c, but neglected to note that in our oldest
branches that file didn't have the #include that defines that function.
This results in a fortunately-harmless compiler warning. Per buildfarm.
Diffstat (limited to 'contrib/intarray/_int_bool.c')
| -rw-r--r-- | contrib/intarray/_int_bool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/intarray/_int_bool.c b/contrib/intarray/_int_bool.c index 468a53a7bbb..57c02198363 100644 --- a/contrib/intarray/_int_bool.c +++ b/contrib/intarray/_int_bool.c @@ -3,6 +3,7 @@ */ #include "postgres.h" +#include "miscadmin.h" #include "utils/builtins.h" #include "_int.h" |
