Hi *, I've realised our 4.2.3 application is printing this to the log when doing a basic `User.find(1)`:
SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1 When I would've expected: SELECT `users`.* FROM `users` WHERE `users`.`id` = ? LIMIT 1 [["id", 1]] I tried various things and found out that it only happens when using the `mysql2` adapter. The `mysql` and `pg` ones seem to print the expected logs. Does it mean mysql2 doesn't get the full advantage of the improvements provided by AdequateRecord? Or is it just a difference in the way it logs things? Thanks! -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f4402463-26e3-4e4e-886a-6b85c3a4751e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

