mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
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
This commit is contained in:
parent
5acea7fc9c
commit
269ad9711d
5 changed files with 23 additions and 8 deletions
|
@ -1,5 +1,7 @@
|
|||
*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 @@ module ActiveRecord
|
|||
|
||||
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 @@ module ActiveRecord
|
|||
|
||||
# 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 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|||
|
||||
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 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|||
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 @@ if ActiveRecord::Base.connection.respond_to?(:tables)
|
|||
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]/]
|
||||
|
|
Loading…
Reference in a new issue