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
Verify if the supported databases (mysql and postgres for now) have support for upserts using a single and atomic sql statement. If not, we might need to redesign the change.
Change the actionUnliftable to support it. The Unliftable instances are responsible for reading the quoted AST when expanding them within another quotation.
Change the actionLiftable to support it. Liftable instances are responsible for lifting the query AST to the quoted instance.
Fix the compilation warnings of pattern matching not considering the new AST type. Use the implementation for inserts as reference.
Implement the integration between SqlIdiom and the specific dialect.
The text was updated successfully, but these errors were encountered:
Quill requires multiple queries to use the upsert (insert or update) pattern:
It should support a single
upsert
statement:Insertable
/Updatable
actionUnliftable
to support it. TheUnliftable
instances are responsible for reading the quoted AST when expanding them within another quotation.actionLiftable
to support it.Liftable
instances are responsible for lifting the query AST to the quoted instance.SqlIdiom
and the specific dialect.The text was updated successfully, but these errors were encountered: