From c212cfecb177338db21d2ecebbb66aa0787974f4 Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Wed, 17 Jul 2013 09:51:22 +0200 Subject: Revert "Merge pull request #11120 from awilliams/ar_mysql2_boolean_quoting" This reverts commit cb1d07e43926bcec95cb8b4a663ca9889173395a, reversing changes made to 754a373e301d2df0b12a11083405252722bc8366. --- activerecord/CHANGELOG.md | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'activerecord/CHANGELOG.md') diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 8667f40406..8e262b5fd7 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,25 +1,3 @@ -* Fix bug when using Mysql2 adapter where in some cases, boolean values were - being output in sql as `t` or `f` instead of `1` or `0`. Example: - - class Model < ActiveRecord::Base - validates_uniqueness_of :boolean_col - end - Model.first.valid? - - Previously generated sql: - - SELECT 1 AS one FROM `models` WHERE - `models`.`boolean_col` = BINARY 'f' LIMIT 1 - - With fix: - - SELECT 1 AS one FROM `models` WHERE - `models`.`boolean_col` = BINARY 0 LIMIT 1 - - Fixes: #11119 - - *Adam Williams* - * `change_column` for PostgreSQL adapter respects the `:array` option. *Yves Senn* -- cgit v1.2.3