aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-05-12 03:59:43 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-05-12 03:59:43 +0000
commit491b4a3c84194931de51c3331b028dcfcb606074 (patch)
tree7bef62758c05ccad52e63cf9955daca2a8c81f04 /activerecord/test
parentc069f361f090790b9769b349eefa260e57d4c63b (diff)
downloadrails-491b4a3c84194931de51c3331b028dcfcb606074.tar.gz
rails-491b4a3c84194931de51c3331b028dcfcb606074.tar.bz2
rails-491b4a3c84194931de51c3331b028dcfcb606074.zip
PostgreSQL: migrations support :limit with :integer columns by mapping limit < 4 to smallint, > 4 to bigint, and anything else to integer. Closes #2900.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4335 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/migration_test.rb40
1 files changed, 40 insertions, 0 deletions
diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb
index e238eab1a2..9f1f39736e 100644
--- a/activerecord/test/migration_test.rb
+++ b/activerecord/test/migration_test.rb
@@ -118,6 +118,46 @@ if ActiveRecord::Base.connection.supports_migrations?
ensure
Person.connection.drop_table :testings rescue nil
end
+
+ def test_create_table_with_limits
+ Person.connection.create_table :testings do |t|
+ t.column :foo, :string, :limit => 255
+
+ t.column :default_int, :integer
+
+ t.column :one_int, :integer, :limit => 1
+ t.column :four_int, :integer, :limit => 4
+ t.column :eight_int, :integer, :limit => 8
+ end
+
+ columns = Person.connection.columns(:testings)
+ foo = columns.detect { |c| c.name == "foo" }
+ assert_equal 255, foo.limit
+
+ default = columns.detect { |c| c.name == "default_int" }
+ one = columns.detect { |c| c.name == "one_int" }
+ four = columns.detect { |c| c.name == "four_int" }
+ eight = columns.detect { |c| c.name == "eight_int" }
+
+ if current_adapter?(:PostgreSQLAdapter)
+ assert_equal 'integer', default.sql_type
+ assert_equal 'smallint', one.sql_type
+ assert_equal 'integer', four.sql_type
+ assert_equal 'bigint', eight.sql_type
+ elsif current_adapter?(:MysqlAdapter)
+ assert_equal 'int(11)', default.sql_type
+ assert_equal 'int(1)', one.sql_type
+ assert_equal 'int(4)', four.sql_type
+ assert_equal 'int(8)', eight.sql_type
+ else
+ assert_equal 'integer', default.sql_type
+ assert_equal 'integer(1)', one.sql_type
+ assert_equal 'integer(4)', four.sql_type
+ assert_equal 'integer(8)', eight.sql_type
+ end
+ ensure
+ Person.connection.drop_table :testings rescue nil
+ end
# SQL Server and Sybase will not allow you to add a NOT NULL column
# to a table without specifying a default value, so the