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
This commit is contained in:
David Rowley 2024-05-23 15:24:54 +12:00
parent fbd4321fd5
commit 8559252095
1 changed files with 2 additions and 2 deletions

View File

@ -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? */