提交 269ad971 编写于 作者: J Jeremy Kemper

MySQL: blob and text columns may not have defaults in 5.x. Update fixtures...

MySQL: blob and text columns may not have defaults in 5.x. Update fixtures schema for strict mode. Closes #6695.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6074 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 5acea7fc
*SVN*
* MySQL: blob and text columns may not have defaults in 5.x. Update fixtures schema for strict mode. #6695 [Dan Kubb]
* update_all can take a Hash argument. sanitize_sql splits into two methods for conditions and assignment since NULL values and delimiters are handled differently. #6583, #7365 [sandofsky, Assaf]
* MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last inserted id. #6778 [Jonathan Viney, timc]
......
......@@ -85,12 +85,13 @@ def self.mysql_connection(config) # :nodoc:
module ConnectionAdapters
class MysqlColumn < Column #:nodoc:
TYPES_ALLOWING_EMPTY_STRING_DEFAULT = Set.new([:binary, :string, :text])
TYPES_DISALLOWING_DEFAULT = Set.new([:binary, :text])
TYPES_ALLOWING_EMPTY_STRING_DEFAULT = Set.new([:string])
def initialize(name, default, sql_type = nil, null = true)
@original_default = default
super
@default = nil if missing_default_forged_as_empty_string?
@default = nil if no_default_allowed? || missing_default_forged_as_empty_string?
end
private
......@@ -102,14 +103,19 @@ def simplified_type(field_type)
# MySQL misreports NOT NULL column default when none is given.
# We can't detect this for columns which may have a legitimate ''
# default (string, text, binary) but we can for others (integer,
# datetime, boolean, and the rest).
# default (string) but we can for others (integer, datetime, boolean,
# and the rest).
#
# Test whether the column has default '', is not null, and is not
# a type allowing default ''.
def missing_default_forged_as_empty_string?
!null && @original_default == '' && !TYPES_ALLOWING_EMPTY_STRING_DEFAULT.include?(type)
end
# MySQL 5.0 does not allow text and binary columns to have defaults
def no_default_allowed?
TYPES_DISALLOWING_DEFAULT.include?(type)
end
end
# The MySQL adapter will work with both Ruby/MySQL, which is a Ruby-based MySQL adapter that comes bundled with Active Record, and with
......
......@@ -176,8 +176,8 @@ CREATE TABLE `authors` (
CREATE TABLE `tasks` (
`id` int(11) NOT NULL auto_increment,
`starting` datetime NOT NULL default '0000-00-00 00:00:00',
`ending` datetime NOT NULL default '0000-00-00 00:00:00',
`starting` datetime NOT NULL default '1000-01-01 00:00:00',
`ending` datetime NOT NULL default '1000-01-01 00:00:00',
PRIMARY KEY (`id`)
) TYPE=InnoDB;
......
......@@ -692,7 +692,7 @@ def test_create_table_with_binary_column
assert_nothing_raised {
Person.connection.create_table :binary_testings do |t|
t.column "data", :binary, :default => "", :null => false
t.column "data", :binary, :null => false
end
}
......@@ -702,7 +702,7 @@ def test_create_table_with_binary_column
if current_adapter?(:OracleAdapter)
assert_equal "empty_blob()", data_column.default
else
assert_equal "", data_column.default
assert_nil data_column.default
end
Person.connection.drop_table :binary_testings rescue nil
......
......@@ -89,6 +89,13 @@ def test_schema_dump_illegal_ignored_table_value
end
end
if current_adapter?(:MysqlAdapter)
def test_schema_dump_should_not_add_default_value_for_mysql_text_field
output = standard_dump
assert_match %r{t.column "body",\s+:text,\s+:null => false$}, output
end
end
def test_schema_dump_includes_decimal_options
stream = StringIO.new
ActiveRecord::SchemaDumper.ignore_tables = [/^[^n]/]
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册