1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/arel/visitors/mysql.rb

73 lines
2.3 KiB
Ruby
Raw Normal View History

2016-08-31 11:20:36 -04:00
# frozen_string_literal: true
2018-02-24 01:45:50 -05:00
2018-02-24 02:41:47 -05:00
module Arel # :nodoc: all
2010-09-23 18:26:08 -04:00
module Visitors
class MySQL < Arel::Visitors::ToSql
2010-10-19 14:47:00 -04:00
private
2018-02-24 01:45:50 -05:00
def visit_Arel_Nodes_Bin(o, collector)
collector << "BINARY "
visit o.expr, collector
end
def visit_Arel_Nodes_UnqualifiedColumn(o, collector)
visit o.expr, collector
end
2018-02-24 01:45:50 -05:00
###
# :'(
# http://dev.mysql.com/doc/refman/5.0/en/select.html#id3482214
def visit_Arel_Nodes_SelectStatement(o, collector)
if o.offset && !o.limit
o.limit = Arel::Nodes::Limit.new(18446744073709551615)
end
super
end
2010-10-19 14:47:00 -04:00
2018-02-24 01:45:50 -05:00
def visit_Arel_Nodes_SelectCore(o, collector)
o.froms ||= Arel.sql("DUAL")
super
end
def visit_Arel_Nodes_Concat(o, collector)
collector << " CONCAT("
visit o.left, collector
collector << ", "
visit o.right, collector
collector << ") "
collector
end
# In the simple case, MySQL allows us to place JOINs directly into the UPDATE
# query. However, this does not allow for LIMIT, OFFSET and ORDER. To support
# these, we must use a subquery.
def prepare_update_statement(o)
if o.offset || has_join_sources?(o) && has_limit_or_offset_or_orders?(o)
super
else
o
end
end
alias :prepare_delete_statement :prepare_update_statement
# 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.
def build_subselect(key, o)
subselect = super
# Materialize subquery by adding distinct
# to work with MySQL 5.7.6 which sets optimizer_switch='derived_merge=on'
unless has_limit_or_offset_or_orders?(subselect)
core = subselect.cores.last
core.set_quantifier = Arel::Nodes::Distinct.new
end
Nodes::SelectStatement.new.tap do |stmt|
core = stmt.cores.last
core.froms = Nodes::Grouping.new(subselect).as("__active_record_temp")
core.projections = [Arel.sql(quote_column_name(key.name))]
end
end
2010-09-23 18:26:08 -04:00
end
end
end