aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
diff options
context:
space:
mode:
authorNoemj <olli.rissanen@helsinki.fi>2013-05-15 17:20:23 +0300
committerNoemj <olli.rissanen@helsinki.fi>2013-05-15 17:20:23 +0300
commiteaf54865b1313094ffca16aca1b199394bc58bae (patch)
tree2a3aea0b1d4889ac8b7fcb2aeec2a572f13104a4 /activerecord/lib/active_record/relation
parenta834b57b6e6028eebf6ec29c550f5328a527f487 (diff)
downloadrails-eaf54865b1313094ffca16aca1b199394bc58bae.tar.gz
rails-eaf54865b1313094ffca16aca1b199394bc58bae.tar.bz2
rails-eaf54865b1313094ffca16aca1b199394bc58bae.zip
Initial commit for select statements bindparam implementation
Diffstat (limited to 'activerecord/lib/active_record/relation')
-rw-r--r--activerecord/lib/active_record/relation/query_methods.rb35
1 files changed, 33 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb
index 9fcd2d06c5..3dcc8d0ac2 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -374,6 +374,9 @@ module ActiveRecord
end
end
+ #For bind param caching. TODO: VALIDATE AND CORRECT THIS
+ self.bind_values = []
+ #end
self
end
@@ -801,7 +804,7 @@ module ActiveRecord
build_joins(arel, joins_values) unless joins_values.empty?
- collapse_wheres(arel, (where_values - ['']).uniq)
+ collapse_wheres(arel, (where_values - [''])) #TODO: Add uniq with real value comparison / ignore uniqs that have binds
arel.having(*having_values.uniq.reject{|h| h.blank?}) unless having_values.empty?
@@ -890,8 +893,12 @@ module ActiveRecord
when String, Array
[@klass.send(:sanitize_sql, other.empty? ? opts : ([opts] + other))]
when Hash
- attributes = @klass.send(:expand_hash_conditions_for_aggregates, opts)
+ temp_opts = opts.dup
+ create_binds(temp_opts)
+ temp_opts = substitute_opts(temp_opts)
+
+ attributes = @klass.send(:expand_hash_conditions_for_aggregates, temp_opts)
attributes.values.grep(ActiveRecord::Relation) do |rel|
self.bind_values += rel.bind_values
end
@@ -902,6 +909,30 @@ module ActiveRecord
end
end
+ def create_binds(temp_opts)
+ binds = []
+ temp_opts.map do |column, value|
+ case value
+ when String, Integer
+ if @klass.column_names.include? column.to_s
+ binds.push([@klass.columns_hash[column.to_s], value])
+ end
+ end
+ end
+ self.bind_values += binds
+ end
+
+ def substitute_opts(temp_opts)
+ temp_opts = temp_opts.each_with_index do |(column,value), index|
+ if @klass.columns_hash[column.to_s] != nil
+ case value
+ when String, Integer
+ temp_opts[column] = connection.substitute_at(column, index)
+ end
+ end
+ end
+ end
+
def build_from
opts, name = from_value
case opts