aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/examples
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-09-02 14:10:19 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2010-09-09 14:34:47 -0700
commitcc81b04ae540c0b75f5428951e11dea2f13a0946 (patch)
tree44783ba331c0db0ae15f147f57b8837b3c91f625 /activerecord/examples
parent82ea5db0304c4a64148b982c9bf26902c405be29 (diff)
downloadrails-cc81b04ae540c0b75f5428951e11dea2f13a0946.tar.gz
rails-cc81b04ae540c0b75f5428951e11dea2f13a0946.tar.bz2
rails-cc81b04ae540c0b75f5428951e11dea2f13a0946.zip
AR perf test: switch to mysql2, bundle faker and rbench
Diffstat (limited to 'activerecord/examples')
-rw-r--r--activerecord/examples/performance.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/examples/performance.rb b/activerecord/examples/performance.rb
index a985cfcb66..5450209959 100644
--- a/activerecord/examples/performance.rb
+++ b/activerecord/examples/performance.rb
@@ -14,7 +14,7 @@ require 'rbench'
require File.expand_path("../../../load_paths", __FILE__)
require "active_record"
-conn = { :adapter => 'mysql',
+conn = { :adapter => 'mysql2',
:database => 'activerecord_unittest',
:username => 'rails', :password => '',
:encoding => 'utf8' }