diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/catversion.h | 2 | ||||
| -rw-r--r-- | src/include/nodes/primnodes.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 7133b961514..7ed743df970 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 201502191 +#define CATALOG_VERSION_NO 201502221 #endif diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index 1d06f426be4..b004da6dc4c 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -1050,6 +1050,7 @@ typedef struct NullTest Expr *arg; /* input expression */ NullTestType nulltesttype; /* IS NULL, IS NOT NULL */ bool argisrow; /* T if input is of a composite type */ + int location; /* token location, or -1 if unknown */ } NullTest; /* @@ -1071,6 +1072,7 @@ typedef struct BooleanTest Expr xpr; Expr *arg; /* input expression */ BoolTestType booltesttype; /* test type */ + int location; /* token location, or -1 if unknown */ } BooleanTest; /* |
