aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-10-07 06:27:39 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-10-07 06:27:39 +0000
commitc7c3f73fd96e041c2565d75268544f2887b21a59 (patch)
tree0790adcaf6d2c92db96b026096d4d17aeab80fe9 /activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
parent98f50607e18d111873c181ad75a28cf9be68f589 (diff)
downloadrails-c7c3f73fd96e041c2565d75268544f2887b21a59.tar.gz
rails-c7c3f73fd96e041c2565d75268544f2887b21a59.tar.bz2
rails-c7c3f73fd96e041c2565d75268544f2887b21a59.zip
Reinstate failsafe date/time parsing rescues. Head off some obvious failures like year == 0 or nil.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7771 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb')
-rwxr-xr-xactiverecord/lib/active_record/connection_adapters/mysql_adapter.rb34
1 files changed, 16 insertions, 18 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
index 94ec5cf595..b385af7321 100755
--- a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
@@ -91,19 +91,23 @@ module ActiveRecord
module ConnectionAdapters
class MysqlColumn < Column #:nodoc:
- TYPES_DISALLOWING_DEFAULT = Set.new([:binary, :text])
- TYPES_ALLOWING_EMPTY_STRING_DEFAULT = Set.new([:string])
-
module Format
DATE = /\A(\d{4})-(\d\d)-(\d\d)\z/
DATETIME = /\A(\d{4})-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)(?:\.(\d{6}))?\z/
end
- def initialize(name, default, sql_type = nil, null = true)
- @original_default = default
- super
- @default = nil if no_default_allowed? || missing_default_forged_as_empty_string?
- @default = '' if @original_default == '' && no_default_allowed?
+ def extract_default(default)
+ if type == :binary || type == :text
+ if default.blank?
+ default
+ else
+ raise ArgumentError, "#{type} columns cannot have a default value: #{default.inspect}"
+ end
+ elsif missing_default_forged_as_empty_string?(default)
+ nil
+ else
+ super
+ end
end
class << self
@@ -114,7 +118,7 @@ module ActiveRecord
if string =~ Format::DATE
new_date $1.to_i, $2.to_i, $3.to_i
else
- new_date *ParseDate.parsedate(string)[0..2]
+ super
end
end
@@ -125,8 +129,7 @@ module ActiveRecord
if string =~ Format::DATETIME
new_time $1.to_i, $2.to_i, $3.to_i, $4.to_i, $5.to_i, $6.to_i, $7.to_i
else
- time_hash = Date._parse(string)
- new_time *(time_hash.values_at(:year, :mon, :mday, :hour, :min, :sec) << microseconds(time_hash))
+ super
end
end
end
@@ -145,13 +148,8 @@ module ActiveRecord
#
# Test whether the column has default '', is not null, and is not
# a type allowing default ''.
- def missing_default_forged_as_empty_string?
- !null && @original_default == '' && !TYPES_ALLOWING_EMPTY_STRING_DEFAULT.include?(type)
- end
-
- # MySQL 5.0 does not allow text and binary columns to have defaults
- def no_default_allowed?
- TYPES_DISALLOWING_DEFAULT.include?(type)
+ def missing_default_forged_as_empty_string?(default)
+ type != :string && !null && default == ''
end
end