|
|
@ -1,4 +1,6 @@ |
|
|
|
module Report::QueryUtils |
|
|
|
module Report::QueryUtils |
|
|
|
|
|
|
|
Infinity = 1.0/0 |
|
|
|
|
|
|
|
|
|
|
|
alias singleton_class metaclass unless respond_to? :singleton_class |
|
|
|
alias singleton_class metaclass unless respond_to? :singleton_class |
|
|
|
|
|
|
|
|
|
|
|
delegate :quoted_false, :quoted_true, :to => "engine.reporting_connection" |
|
|
|
delegate :quoted_false, :quoted_true, :to => "engine.reporting_connection" |
|
|
@ -217,6 +219,15 @@ module Report::QueryUtils |
|
|
|
Report::QueryUtils.cache |
|
|
|
Report::QueryUtils.cache |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def compare(first, second) |
|
|
|
|
|
|
|
first = Array(first).flatten |
|
|
|
|
|
|
|
second = Array(second).flatten |
|
|
|
|
|
|
|
first.zip second do |a, b| |
|
|
|
|
|
|
|
return (a <=> b) || (a == Infinity ? 1 : -1) if a != b |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
second.size > first.size ? -1 : 0 |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def mysql? |
|
|
|
def mysql? |
|
|
|
[:mysql, :mysql2].include? adapter_name.to_s.downcase.to_sym |
|
|
|
[:mysql, :mysql2].include? adapter_name.to_s.downcase.to_sym |
|
|
|
end |
|
|
|
end |
|
|
|