aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/examples
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-09-09 21:40:20 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2010-09-10 12:16:56 -0700
commitbe9831ceb1dc63b254ead268098295c0be6c2063 (patch)
tree8787d5b19e9fc53aa066fb5dcc4d2609e4cd7278 /activerecord/examples
parenta11dd8ac87cec1e71bf477ca4d3670c5e9531174 (diff)
downloadrails-be9831ceb1dc63b254ead268098295c0be6c2063.tar.gz
rails-be9831ceb1dc63b254ead268098295c0be6c2063.tar.bz2
rails-be9831ceb1dc63b254ead268098295c0be6c2063.zip
Switch back to mysql for easier comparison
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 5450209959..a985cfcb66 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 => 'mysql2',
+conn = { :adapter => 'mysql',
:database => 'activerecord_unittest',
:username => 'rails', :password => '',
:encoding => 'utf8' }