## Issue Rails 6 introduced [`upsert_all`](https://apidock.com/rails/v6.0.0/ActiveRecord/Persistence/ClassMethods/upsert_all) and the SQL Server adapter does not implement it yet. There's no such thing as MySQL's `ON DUPLICATE KEY UPDATE` in SQL Server, but we could possibly use the [`MERGE`](https://docs.microsoft.com/en-us/previous-versions/sql/sql-server-2008/bb522522(v=sql.100)?redirectedfrom=MSDN) clause to achieve the same result. ## Expected behavior `upsert_all` and `insert_all` could possibly be implemented using `MERGE`. ## Actual behavior `upsert_all` and `insert_all` are not implemented.