You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Documentation and comments in code and tests have been using the termssensitive/insensitive cursor incorrectly relative to the SQL standard.(Cursor sensitivity is only relevant for changes made in the sametransaction as the cursor, not for concurrent changes in othersessions.) Moreover, some of the behavior of PostgreSQL is incorrectaccording to the SQL standard, confusing the issue further. (WHERECURRENT OF changes are not visible in insensitive cursors, but theyshould be.)This change corrects the terminology and removes the claim thatsensitive cursors are supported. It also adds a test case that checksthe insensitive behavior in a "correct" way, using a change commandnot using WHERE CURRENT OF. Finally, it adds the ASENSITIVE cursoroption to select the default asensitive behavior, per SQL standard.There are no changes to cursor behavior in this patch.Discussion:https://www.postgresql.org/message-id/flat/96ee8b30-9889-9e1b-b053-90e10c050e85%40enterprisedb.com
T211Basic trigger capability08Multiple triggers for the same event are executed in the order in which they were created in the catalogNOintentionally omitted