diff options
author | Alvaro Herrera | 2011-02-23 17:18:09 +0000 |
---|---|---|
committer | Alvaro Herrera | 2011-07-04 18:35:58 +0000 |
commit | b93f5a5673b4bb09e14eb80fe28aa21fc20a6271 (patch) | |
tree | 0d9d146eab2407dc60627542c26902a933262b76 /src/backend/commands/explain.c | |
parent | d665162077862ef9e5886f870bf5ce909fc9342c (diff) |
Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.h
This lets us stop including rel.h into execnodes.h, which is a widely
used header.
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r-- | src/backend/commands/explain.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c index a770daf88d9..fee829f9606 100644 --- a/src/backend/commands/explain.c +++ b/src/backend/commands/explain.c @@ -32,8 +32,9 @@ #include "utils/builtins.h" #include "utils/guc.h" #include "utils/lsyscache.h" -#include "utils/tuplesort.h" +#include "utils/rel.h" #include "utils/snapmgr.h" +#include "utils/tuplesort.h" #include "utils/xml.h" |