Hi there, I am trying to use the 'READ COMMITTED' transaction isolation level as documented here: http://sequel.jeremyevans.net/rdoc/files/doc/transactions_rdoc.html#label-Transaction+Isolation+Levels
The following example runs without an error, but the isolation option is dropped: DB.transaction(isolation: :committed) do DB[:users].insert(user_id: 'test') end Stepping through the code the "isolation: :commited" option appears to be dropped in the transaction_options method: https://github.com/jeremyevans/sequel/blob/master/lib/sequel/database/transactions.rb#L274 The method has a comment saying: "Meant to be overridden", which is not the case. I am using the sequel 5.5.0 gem with a mysql 5.6.35 database. Am I missing something or is this a bug? -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/d/optout.
