From db6688585f47d96f30ed1c253385e1053c789d2b Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 20 Jan 2005 14:36:39 +0000 Subject: [PATCH] Fixed that column aliases didn't work as expected with the new MySql411 driver #507 [Demetrius] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@465 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/CHANGELOG | 2 ++ activerecord/lib/active_record/vendor/mysql411.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 965054b4b6..e006a34edc 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed that column aliases didn't work as expected with the new MySql411 driver #507 [Demetrius] + * Fixed that find_all would produce invalid sql when called sequentialy #490 [Scott Baron] diff --git a/activerecord/lib/active_record/vendor/mysql411.rb b/activerecord/lib/active_record/vendor/mysql411.rb index 3daa846f16..0a94258122 100644 --- a/activerecord/lib/active_record/vendor/mysql411.rb +++ b/activerecord/lib/active_record/vendor/mysql411.rb @@ -255,7 +255,7 @@ class Mysql def_value = f[7] max_length = 0 - ret << Field::new(table_name, table_name, column_name, length, type, flags, decimals, def_value, max_length) + ret << Field::new(table_name, table_name, column_name_alias, length, type, flags, decimals, def_value, max_length) end ret end