提交 81dd3872 编写于 作者: J Jeremy Daer (Kemper)

Merge pull request #21536 from jeremy/support-mysql2-0.4.0

Support mysql2 0.4.0, first release with prepared statements support
...@@ -90,7 +90,7 @@ platforms :ruby do ...@@ -90,7 +90,7 @@ platforms :ruby do
group :db do group :db do
gem 'pg', '>= 0.18.0' gem 'pg', '>= 0.18.0'
gem 'mysql', '>= 2.9.0' gem 'mysql', '>= 2.9.0'
gem 'mysql2', '>= 0.3.18' gem 'mysql2', '>= 0.4.0', github: 'brianmario/mysql2'
end end
end end
......
...@@ -19,6 +19,12 @@ GIT ...@@ -19,6 +19,12 @@ GIT
qu (= 0.2.0) qu (= 0.2.0)
redis-namespace redis-namespace
GIT
remote: git://github.com/brianmario/mysql2.git
revision: 4d76557499b762d5a62aebb7f6a56510ad221eab
specs:
mysql2 (0.4.0)
GIT GIT
remote: git://github.com/mikel/mail.git remote: git://github.com/mikel/mail.git
revision: 64ef1a12efcdda53fd63e1456c2c564044bf82ce revision: 64ef1a12efcdda53fd63e1456c2c564044bf82ce
...@@ -203,7 +209,6 @@ GEM ...@@ -203,7 +209,6 @@ GEM
multi_json (1.11.2) multi_json (1.11.2)
mustache (1.0.2) mustache (1.0.2)
mysql (2.9.1) mysql (2.9.1)
mysql2 (0.3.19)
nokogiri (1.6.6.2) nokogiri (1.6.6.2)
mini_portile (~> 0.6.0) mini_portile (~> 0.6.0)
nokogiri (1.6.6.2-x64-mingw32) nokogiri (1.6.6.2-x64-mingw32)
...@@ -313,7 +318,7 @@ DEPENDENCIES ...@@ -313,7 +318,7 @@ DEPENDENCIES
minitest (< 5.3.4) minitest (< 5.3.4)
mocha (~> 0.14) mocha (~> 0.14)
mysql (>= 2.9.0) mysql (>= 2.9.0)
mysql2 (>= 0.3.18) mysql2 (>= 0.4.0)!
nokogiri (>= 1.4.5) nokogiri (>= 1.4.5)
pg (>= 0.18.0) pg (>= 0.18.0)
psych (~> 2.0) psych (~> 2.0)
......
require 'active_record/connection_adapters/abstract_mysql_adapter' require 'active_record/connection_adapters/abstract_mysql_adapter'
gem 'mysql2', '~> 0.3.18' gem 'mysql2', '>= 0.3.18', '< 0.5'
require 'mysql2' require 'mysql2'
module ActiveRecord module ActiveRecord
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册