From 8f387995054d9ce79522da8ef65fba28c6ea0785 Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Tue, 20 May 2014 14:07:58 -0700 Subject: Inline typecasting helpers from Column to the appropriate types --- .../lib/active_record/connection_adapters/type/time_value.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'activerecord/lib/active_record/connection_adapters/type/time_value.rb') diff --git a/activerecord/lib/active_record/connection_adapters/type/time_value.rb b/activerecord/lib/active_record/connection_adapters/type/time_value.rb index d9564d7f48..654e5c7943 100644 --- a/activerecord/lib/active_record/connection_adapters/type/time_value.rb +++ b/activerecord/lib/active_record/connection_adapters/type/time_value.rb @@ -18,6 +18,14 @@ module ActiveRecord ::Time.public_send(Base.default_timezone, year, mon, mday, hour, min, sec, microsec) rescue nil end end + + # Doesn't handle time zones. + def fast_string_to_time(string) + if string =~ Column::Format::ISO_DATETIME + microsec = ($7.to_r * 1_000_000).to_i + new_time $1.to_i, $2.to_i, $3.to_i, $4.to_i, $5.to_i, $6.to_i, microsec + end + end end end end -- cgit v1.2.3