On Sep 1, 11:56 am, Jeremy Evans <[email protected]> wrote: > On Sep 1, 10:10 am, Jeremy Evans <[email protected]> wrote: > > > Sequel 3.27.0 has been released and should be available on the gem > > mirrors. > > ActiveSupport has a serious bug in it's Time.=== implementation which > breaks Sequel 3.27.0 for timestamp columns. To fix it: > > def Time.===(other) > super || (self == Time && other.is_a? > (ActiveSupport::TimeWithZone)) > end > > I've reported this to the Rails bugtracker, hopefully anyone affected > can +1 it enough for them to care:https://github.com/rails/rails/pull/2801
Since Rails still hasn't accepted this pull request, I've decided to work around the issue by avoiding the use of SQLTime.=== in Sequel (https://github.com/jeremyevans/sequel/commit/ 78a92e1c422e60e9eec09e1470838f8a8d85baad). Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
