Sequel 5.58.0 Released #1889
jeremyevans
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Sequel 5.58.0 has been released!
New Features
Dataset#merge and related #merge_* methods have been added for the
MERGE statement. MERGE is supported on PostgreSQL 15+, Oracle,
Microsoft SQL Server, DB2, H2, HSQLDB, and Derby. You can use MERGE
to insert, update, and/or delete in a single query. You call
the #merge_* methods to setup the MERGE statement, and #merge to
execute it on the database:
On PostgreSQL, the following additional MERGE related methods are
available:
A :disable_split_materialized Database option is now supported on
MySQL. This disables split_materialized support in the optimizer,
working around a bug in MariaDB 10.5+ that causes failures in
Sequel's association tests.
Thanks,
Jeremy
Beta Was this translation helpful? Give feedback.
All reactions