aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-11-16 08:09:26 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-11-16 08:09:26 -0800
commitf0139a16c263ba62e7e45d462a4fff411ebf2523 (patch)
tree9f47fcf5c2a6466e50c5ecb19eaa9ea94e0bfb43 /lib/arel
parent206ec83ced0097a97f431a8fe20d4fcbd8fdd4d5 (diff)
downloadrails-f0139a16c263ba62e7e45d462a4fff411ebf2523.tar.gz
rails-f0139a16c263ba62e7e45d462a4fff411ebf2523.tar.bz2
rails-f0139a16c263ba62e7e45d462a4fff411ebf2523.zip
returning undefined for unknown column types
Diffstat (limited to 'lib/arel')
-rw-r--r--lib/arel/attributes.rb2
-rw-r--r--lib/arel/attributes/attribute.rb13
2 files changed, 8 insertions, 7 deletions
diff --git a/lib/arel/attributes.rb b/lib/arel/attributes.rb
index a7fb00293b..92cc041f83 100644
--- a/lib/arel/attributes.rb
+++ b/lib/arel/attributes.rb
@@ -13,7 +13,7 @@ module Arel
when :date, :datetime, :timestamp, :time then Time
when :boolean then Boolean
else
- raise NotImplementedError, "Column type `#{column.type}` is not currently handled"
+ Undefined
end
end
end
diff --git a/lib/arel/attributes/attribute.rb b/lib/arel/attributes/attribute.rb
index e027a65a74..5cbe194b41 100644
--- a/lib/arel/attributes/attribute.rb
+++ b/lib/arel/attributes/attribute.rb
@@ -5,12 +5,13 @@ module Arel
include Arel::Predications
end
- class String < Attribute; end
- class Time < Attribute; end
- class Boolean < Attribute; end
- class Decimal < Attribute; end
- class Float < Attribute; end
- class Integer < Attribute; end
+ class String < Attribute; end
+ class Time < Attribute; end
+ class Boolean < Attribute; end
+ class Decimal < Attribute; end
+ class Float < Attribute; end
+ class Integer < Attribute; end
+ class Undefined < Attribute; end
end
Attribute = Attributes::Attribute