aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-11 23:45:02 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-11 23:45:02 +0000
commit047c75fa06f0b76f484acdc75a63e55b4eb24274 (patch)
treef6a2b978bf5be262703017ccd6190aa718f891f6
parentae6a513bd16e6b8bf7adb61384fbc140ca604942 (diff)
downloadrails-047c75fa06f0b76f484acdc75a63e55b4eb24274.tar.gz
rails-047c75fa06f0b76f484acdc75a63e55b4eb24274.tar.bz2
rails-047c75fa06f0b76f484acdc75a63e55b4eb24274.zip
SQLServer: don't report limits for unsupported field types. Closes #2835.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2982 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activerecord/CHANGELOG2
-rw-r--r--activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb2
2 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index c2a7f7ca2f..175e6f5bd5 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* SQLServer: don't report limits for unsupported field types. #2835 [Ryan Tomayko]
+
* Include the Enumerable module in ActiveRecord::Errors. [Rick Bradley <rick@rickbradley.com>]
* Add :group option, correspond to GROUP BY, to the find method and to the has_many association. #2818 [rubyonrails@atyp.de]
diff --git a/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb
index a91e1ca56f..fecc6a7e1c 100644
--- a/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb
@@ -52,6 +52,8 @@ module ActiveRecord
@identity = is_identity
@is_special = sql_type =~ /text|ntext|image/i ? true : false
@scale = scale_value
+ # SQL Server only supports limits on *char and float types
+ @limit = nil unless @type == :float or @type == :string
end
def simplified_type(field_type)