diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2016-04-07 12:08:33 +0100 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2016-04-07 12:08:33 +0100 |
commit | 015e88942aa50f0d419ddac00e63bb06d6e62e86 (patch) | |
tree | 5f8bffa51675e88ebdfb9f35ae2a62ce8dbc63d9 /src/include/nodes/nodes.h | |
parent | f2b1b3079ce9d2965f6e450585f24d18cdf5647b (diff) | |
download | postgresql-015e88942aa50f0d419ddac00e63bb06d6e62e86.tar.gz postgresql-015e88942aa50f0d419ddac00e63bb06d6e62e86.zip |
Load FK defs into relcache for use by planner
Fastpath ignores this if no triggers defined.
Author: Tomas Vondra, with fastpath and comments added by me
Reviewers: David Rowley, Simon Riggs
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r-- | src/include/nodes/nodes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 3f22bdb5a8a..84efa8e886d 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -223,6 +223,7 @@ typedef enum NodeTag T_PlannerGlobal, T_RelOptInfo, T_IndexOptInfo, + T_ForeignKeyOptInfo, T_ParamPathInfo, T_Path, T_IndexPath, |