diff options
author | Paul Sadauskas <psadauskas@gmail.com> | 2012-01-24 14:22:24 -0700 |
---|---|---|
committer | Paul Sadauskas <psadauskas@gmail.com> | 2012-01-24 14:22:24 -0700 |
commit | 6cde635f34dc65a8c6f2d87ca995120fcf0ea25f (patch) | |
tree | c46887a9d311bb834cd74067581517e1a52ae2d2 /activerecord/test | |
parent | b1f8ba138360cd67994d4134f57abca74f8528bc (diff) | |
download | rails-6cde635f34dc65a8c6f2d87ca995120fcf0ea25f.tar.gz rails-6cde635f34dc65a8c6f2d87ca995120fcf0ea25f.tar.bz2 rails-6cde635f34dc65a8c6f2d87ca995120fcf0ea25f.zip |
Handle nil in add_index :length option in MySQL
Our schema.rb is being generated with an `add_index` line similar to this:
add_index "foo", ["foo", "bar"], :name => "xxx", :length => {"foo"=>8, "bar=>nil}
This is the same as it was on Rails 3.1.3, however, now when that
schema.rb is evaluated, its generating bad SQL in MySQL:
Mysql::Error: You have an error in your SQL syntax; check the manual
that corresponds to your MySQL server version for the right syntax
to use near '))' at line 1: CREATE UNIQUE INDEX
`xxx` ON `foo` (`foo`(8), `bar`())
This commit adds a check for nil on the length attribute to prevent the
empty parens from being output.
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/migration/index_test.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration/index_test.rb b/activerecord/test/cases/migration/index_test.rb index 26d7aeb148..89cf0f5e93 100644 --- a/activerecord/test/cases/migration/index_test.rb +++ b/activerecord/test/cases/migration/index_test.rb @@ -55,7 +55,7 @@ module ActiveRecord assert_raise(ArgumentError) { connection.remove_index(table_name, "no_such_index") } end - def test_add_index_length_limit + def test_add_index_name_length_limit good_index_name = 'x' * connection.index_name_length too_long_index_name = good_index_name + 'x' @@ -103,6 +103,12 @@ module ActiveRecord assert connection.index_exists?(:testings, :foo, :name => "custom_index_name") end + def test_add_index_attribute_length_limit + connection.add_index :testings, [:foo, :bar], :length => {:foo => 10, :bar => nil} + + assert connection.index_exists?(:testings, [:foo, :bar]) + end + def test_add_index connection.add_index("testings", "last_name") connection.remove_index("testings", "last_name") |