aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Woolley <thewoolleyman@gmail.com>2009-09-29 02:28:07 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2010-01-12 11:01:49 -0800
commitb9a7ec6db50722e892145110c8527bca81c08041 (patch)
treeca5f6e90078b4fd3cffefd3cef5eb5aa0dbbcfda
parent006519d2c9f142837f3b43882bcd243caa7ccdb9 (diff)
downloadrails-b9a7ec6db50722e892145110c8527bca81c08041.tar.gz
rails-b9a7ec6db50722e892145110c8527bca81c08041.tar.bz2
rails-b9a7ec6db50722e892145110c8527bca81c08041.zip
reduce max size of fixture IDs to fix sqlite2 tests, because sqlite2 was getting negative and changing values for ID field. See http://www.sqlite.org/datatypes.html
Signed-off-by: Yehuda Katz <wycats@gmail.com>
-rw-r--r--activerecord/lib/active_record/fixtures.rb2
-rw-r--r--activerecord/test/cases/fixtures_test.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb
index b528c14bcc..adc675966a 100644
--- a/activerecord/lib/active_record/fixtures.rb
+++ b/activerecord/lib/active_record/fixtures.rb
@@ -434,7 +434,7 @@ end
# Any fixture labeled "DEFAULTS" is safely ignored.
class Fixtures < (RUBY_VERSION < '1.9' ? YAML::Omap : Hash)
- MAX_ID = 2 ** 31 - 1
+ MAX_ID = 2 ** 30 - 1
DEFAULT_FILTER_RE = /\.ya?ml$/
@@all_cached_fixtures = {}
diff --git a/activerecord/test/cases/fixtures_test.rb b/activerecord/test/cases/fixtures_test.rb
index eb3f03c91d..f965652a9a 100644
--- a/activerecord/test/cases/fixtures_test.rb
+++ b/activerecord/test/cases/fixtures_test.rb
@@ -519,8 +519,8 @@ class FoxyFixturesTest < ActiveRecord::TestCase
end
def test_identifies_consistently
- assert_equal 1281023246, Fixtures.identify(:ruby)
- assert_equal 2140105598, Fixtures.identify(:sapphire_2)
+ assert_equal 207281424, Fixtures.identify(:ruby)
+ assert_equal 1066363776, Fixtures.identify(:sapphire_2)
end
TIMESTAMP_COLUMNS = %w(created_at created_on updated_at updated_on)