mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
Directly modify foreign tables.
postgres_fdw can now sent an UPDATE or DELETE statement directly to the foreign server in simple cases, rather than sending a SELECT FOR UPDATE statement and then updating or deleting rows one-by-one. Etsuro Fujita, reviewed by Rushabh Lathia, Shigeru Hanada, Kyotaro Horiguchi, Albe Laurenz, Thom Brown, and me.
This commit is contained in:
@ -1481,6 +1481,7 @@ _readModifyTable(void)
|
||||
READ_NODE_FIELD(withCheckOptionLists);
|
||||
READ_NODE_FIELD(returningLists);
|
||||
READ_NODE_FIELD(fdwPrivLists);
|
||||
READ_BITMAPSET_FIELD(fdwDirectModifyPlans);
|
||||
READ_NODE_FIELD(rowMarks);
|
||||
READ_INT_FIELD(epqParam);
|
||||
READ_ENUM_FIELD(onConflictAction, OnConflictAction);
|
||||
|
Reference in New Issue
Block a user