aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
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 /activerecord/lib
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>
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/fixtures.rb2
1 files changed, 1 insertions, 1 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 = {}