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 SetState function of the sql version of KVS and Vault uses an ANSI compliant but not the most performant way to do an upsert; it tries a SELECT and based on the result, chooses to do an INSERT or an UPDATE.
Now that we have two distinct database drivers for postgres and sqlite, we should also use their respective ways to do an upsert in a single call.
The text was updated successfully, but these errors were encountered:
The
SetState
function of the sql version of KVS and Vault uses an ANSI compliant but not the most performant way to do an upsert; it tries a SELECT and based on the result, chooses to do an INSERT or an UPDATE.Now that we have two distinct database drivers for postgres and sqlite, we should also use their respective ways to do an upsert in a single call.
The text was updated successfully, but these errors were encountered: