diff options
author | David Rowley | 2024-05-23 03:24:54 +0000 |
---|---|---|
committer | David Rowley | 2024-05-23 03:24:54 +0000 |
commit | 8559252095e17c3cf25a28921a6ef8a14e769519 (patch) | |
tree | a21a783a32bf7959327b6656a12db289e9e75912 | |
parent | fbd4321fd5b4400fbbf356d686af6ad6d3208c66 (diff) |
Fix a couple of outdated comments now that we have MERGE RETURNING
This has been supported since c649fa24a.
Discussion: https://postgr.es/m/CAApHDvpqp6vtUzG-_josUEiBGyqnrnVxJ-VdF+hJLXjHdHzsyQ@mail.gmail.com
-rw-r--r-- | src/include/nodes/plannodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index e025679f89..1aeeaec95e 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -53,9 +53,9 @@ typedef struct PlannedStmt uint64 queryId; /* query identifier (copied from Query) */ - bool hasReturning; /* is it insert|update|delete RETURNING? */ + bool hasReturning; /* is it insert|update|delete|merge RETURNING? */ - bool hasModifyingCTE; /* has insert|update|delete in WITH? */ + bool hasModifyingCTE; /* has insert|update|delete|merge in WITH? */ bool canSetTag; /* do I set the command result tag? */ |