BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
446fed4d
Commit
446fed4d
authored
Jan 25, 2016
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
monkey patch for mysql 5.7
parent
0f139331
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
monkey_patch.rb
config/initializers/monkey_patch.rb
+48
-0
No files found.
config/initializers/monkey_patch.rb
0 → 100644
View file @
446fed4d
## This patch is from rails 4.2-stable. Remove it when 4.2.6 is released
## https://github.com/rails/rails/issues/21108
module
ActiveRecord
module
ConnectionAdapters
class
AbstractMysqlAdapter
<
AbstractAdapter
# SHOW VARIABLES LIKE 'name'
def
show_variable
(
name
)
variables
=
select_all
(
"select @@
#{
name
}
as 'Value'"
,
'SCHEMA'
)
variables
.
first
[
'Value'
]
unless
variables
.
empty?
rescue
ActiveRecord
::
StatementInvalid
nil
end
# MySQL is too stupid to create a temporary table for use subquery, so we have
# to give it some prompting in the form of a subsubquery. Ugh!
def
subquery_for
(
key
,
select
)
subsubselect
=
select
.
clone
subsubselect
.
projections
=
[
key
]
subselect
=
Arel
::
SelectManager
.
new
(
select
.
engine
)
subselect
.
project
Arel
.
sql
(
key
.
name
)
# Materialized subquery by adding distinct
# to work with MySQL 5.7.6 which sets optimizer_switch='derived_merge=on'
subselect
.
from
subsubselect
.
distinct
.
as
(
'__active_record_temp'
)
end
end
end
end
module
ActiveRecord
module
ConnectionAdapters
class
MysqlAdapter
<
AbstractMysqlAdapter
ADAPTER_NAME
=
'MySQL'
.
freeze
# Get the client encoding for this database
def
client_encoding
return
@client_encoding
if
@client_encoding
result
=
exec_query
(
"select @@character_set_client"
,
'SCHEMA'
)
@client_encoding
=
ENCODINGS
[
result
.
rows
.
last
.
last
]
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment