Sequel 5.65.0 Released #1988
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
-
Sequel 5.65.0 has been released!
Improvements
The pg_auto_parameterize extension now uses a modified placeholder
literalizer for speeding up the generation of SQL queries in the same
cases where a standard dataset would use a placeholder literalizer.
This can provide a 4% speedup for simple queries, with greater
speedups for more complex queries.
Database#indexes now returns indexes for partitioned tables on
PostgreSQL 11+.
MySQL versions not supporting CHECK constraints no longer include
:min_value/:max_value schema entries for decimal/numeric columns.
Backwards Compatibility
it now accepts the Dataset::PlaceholderLiterlizer class to use as
the first argument. This makes it easier to create
Dataset::PlaceholderLiterlizer subclasses, such as the one now used
by the pg_auto_parameterize extension.
Thanks,
Jeremy
Beta Was this translation helpful? Give feedback.
All reactions