We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently lino silently ignore insertion of object already in database.
This is due to the ON CONFLICT DO NOTHING clause used by the postgresql dataconnector.
ON CONFLICT DO NOTHING
Note: with ingress-descriptor this applies to the start table only
The text was updated successfully, but these errors were encountered:
Additionnaly, the clause ON CONFLICT should be used to implement a lino push upsert action :
lino push upsert
ON CONFLICT (pk) DO UPDATE
Sorry, something went wrong.
No branches or pull requests
Currently lino silently ignore insertion of object already in database.
This is due to the
ON CONFLICT DO NOTHING
clause used by the postgresql dataconnector.Note: with ingress-descriptor this applies to the start table only
The text was updated successfully, but these errors were encountered: