-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reverts the Support to Upsert/Insert Ignore on PDB #471
Conversation
…ity (feedzai#407)" This reverts commit 94ba1a5.
This reverts commit 46f29b2.
This reverts commit 963cd30.
This reverts commit d4f7c4e.
This reverts commit d626297.
This reverts commit 1d32f7f.
This reverts commit 36a434c.
This reverts commit 1658965.
This reverts commit d2f153b.
This reverts commit 2f0d1ff
This reverts commit 348a22d
This reverts commit e100a51
LGTM! Just one quick note: please improve the PR summary with the rational/business need to revert these changes. |
good call! updated! |
Recently, it was added a support for the upsert of entries in the
pdb
library.The feature added supported for entities to, when applicable, be able to be upserted or depending on the engine implementation, an insert ignore or even merge. The feature also enabled the upsert feature for batch processing, i.e. entries could now use the new upsert API. However, after its usage it was possible to conclude it decreased performance when client application used this new API. Giving the degrading performance and also the log messages some of the entities generated for not having the upsert statement available, it was decided to remove this feature entirely from the
pdb
code-base.This series of commit reverts the feature to upsert entries on
pdb
. The reverted commits reverted are as follows.