diff options
author | Andres Freund <andres@anarazel.de> | 2019-03-06 13:04:09 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-03-06 13:04:09 -0800 |
commit | d16a74c20ce3485d43902b0b1fb8ec1c11ec84a5 (patch) | |
tree | 1581b5a335e24136466432cffa8e8f455f54993a /src | |
parent | 342cb650e0ffc7a007a12a419be04d47da4bd8cc (diff) | |
download | postgresql-d16a74c20ce3485d43902b0b1fb8ec1c11ec84a5.tar.gz postgresql-d16a74c20ce3485d43902b0b1fb8ec1c11ec84a5.zip |
Fix equalfuncs for accessMethod addition in 8586bf7ed8.
In a complete brown paper bag moment, I forgot to include equalfuncs
in my previous fix of copy/out/readfuncs. Thanks Tom for noticing.
Discussion: https://postgr.es/m/1659.1551903210@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/nodes/equalfuncs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c index 31499eb798d..3cab90e9f88 100644 --- a/src/backend/nodes/equalfuncs.c +++ b/src/backend/nodes/equalfuncs.c @@ -142,6 +142,7 @@ _equalIntoClause(const IntoClause *a, const IntoClause *b) { COMPARE_NODE_FIELD(rel); COMPARE_NODE_FIELD(colNames); + COMPARE_STRING_FIELD(accessMethod); COMPARE_NODE_FIELD(options); COMPARE_SCALAR_FIELD(onCommit); COMPARE_STRING_FIELD(tableSpaceName); @@ -1240,6 +1241,7 @@ _equalCreateStmt(const CreateStmt *a, const CreateStmt *b) COMPARE_NODE_FIELD(options); COMPARE_SCALAR_FIELD(oncommit); COMPARE_STRING_FIELD(tablespacename); + COMPARE_STRING_FIELD(accessMethod); COMPARE_SCALAR_FIELD(if_not_exists); return true; |