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
The MERGE operation encompasses three actions: INSERT, UPDATE, and DELETE. Its purpose is to facilitate the integration of these operations with FTE. The INSERT operation is already supported in the current code base. But the existing MERGE implementation in PSGL lacks support for UPDATE and DELETE operations.
The tests TestPostgresQueryFailureRecoveryTest#testDeleteWithSubquery and TestPostgresQueryFailureRecoveryTest#testMerge indicate that the assertions regarding the expected modified row counts are failing.
The text was updated successfully, but these errors were encountered:
The MERGE operation encompasses three actions:
INSERT
,UPDATE
, andDELETE
. Its purpose is to facilitate the integration of these operations with FTE. TheINSERT
operation is already supported in the current code base. But the existing MERGE implementation in PSGL lacks support forUPDATE
andDELETE
operations.The tests
TestPostgresQueryFailureRecoveryTest#testDeleteWithSubquery
andTestPostgresQueryFailureRecoveryTest#testMerge
indicate that the assertions regarding the expected modified row counts are failing.The text was updated successfully, but these errors were encountered: