relation.rb 22.7 KB
Newer Older
1
# -*- coding: utf-8 -*-
2

3
module ActiveRecord
R
Rizwan Reza 已提交
4
  # = Active Record Relation
5
  class Relation
6
    JoinOperation = Struct.new(:relation, :join_class, :on)
7 8

    MULTI_VALUE_METHODS  = [:includes, :eager_load, :preload, :select, :group,
9 10
                            :order, :joins, :where, :having, :bind, :references,
                            :extending]
11 12

    SINGLE_VALUE_METHODS = [:limit, :offset, :lock, :readonly, :from, :reordering,
13
                            :reverse_order, :uniq, :create_with]
14

J
Jon Leighton 已提交
15 16
    VALUE_METHODS = MULTI_VALUE_METHODS + SINGLE_VALUE_METHODS

17
    include FinderMethods, Calculations, SpawnMethods, QueryMethods, Batches, Explain, Delegation
18

19
    attr_reader :table, :klass, :loaded
20
    attr_accessor :default_scoped
21
    alias :model :klass
22
    alias :loaded? :loaded
23
    alias :default_scoped? :default_scoped
24

25 26 27 28
    def initialize(klass, table, values = {})
      @klass             = klass
      @table             = table
      @values            = values
A
Aaron Patterson 已提交
29
      @implicit_readonly = nil
30
      @loaded            = false
31
      @default_scoped    = false
32 33
    end

34
    def insert(values)
35 36
      primary_key_value = nil

37
      if primary_key && Hash === values
38 39 40
        primary_key_value = values[values.keys.find { |k|
          k.name == primary_key
        }]
41 42 43 44 45 46 47 48 49 50

        if !primary_key_value && connection.prefetch_primary_key?(klass.table_name)
          primary_key_value = connection.next_sequence_value(klass.sequence_name)
          values[klass.arel_table[klass.primary_key]] = primary_key_value
        end
      end

      im = arel.create_insert
      im.into @table

51 52
      conn = @klass.connection

53
      substitutes = values.sort_by { |arel_attr,_| arel_attr.name }
54 55 56 57 58
      binds       = substitutes.map do |arel_attr, value|
        [@klass.columns_hash[arel_attr.name], value]
      end

      substitutes.each_with_index do |tuple, i|
59
        tuple[1] = conn.substitute_at(binds[i][0], i)
60 61
      end

62
      if values.empty? # empty insert
63
        im.values = Arel.sql(connection.empty_insert_statement_value)
64
      else
65
        im.insert substitutes
66
      end
67

68
      conn.insert(
69
        im,
70
        'SQL',
71
        primary_key,
72 73 74
        primary_key_value,
        nil,
        binds)
75
    end
76

O
Oscar Del Ben 已提交
77
    # Initializes new record from relation while maintaining the current
78 79 80 81 82 83 84 85 86 87 88
    # scope.
    #
    # Expects arguments in the same format as +Base.new+.
    #
    #   users = User.where(name: 'DHH')
    #   user = users.new # => #<User id: nil, name: "DHH", created_at: nil, updated_at: nil>
    #
    # You can also pass a block to new with the new record as argument:
    #
    #   user = users.new { |user| user.name = 'Oscar' }
    #   user.name # => Oscar
P
Pratik Naik 已提交
89
    def new(*args, &block)
90
      scoping { @klass.new(*args, &block) }
91 92
    end

93
    def initialize_copy(other)
94 95 96 97
      # This method is a hot spot, so for now, use Hash[] to dup the hash.
      #   https://bugs.ruby-lang.org/issues/7166
      @values        = Hash[@values]
      @values[:bind] = @values[:bind].dup if @values.key? :bind
98 99 100
      reset
    end

101 102
    alias build new

O
Oscar Del Ben 已提交
103
    # Tries to create a new record with the same scoped attributes
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    # defined in the relation. Returns the initialized object if validation fails.
    #
    # Expects arguments in the same format as +Base.create+.
    #
    # ==== Examples
    #   users = User.where(name: 'Oscar')
    #   users.create # #<User id: 3, name: "oscar", ...>
    #
    #   users.create(name: 'fxn')
    #   users.create # #<User id: 4, name: "fxn", ...>
    #
    #   users.create { |user| user.name = 'tenderlove' }
    #   # #<User id: 5, name: "tenderlove", ...>
    #
    #   users.create(name: nil) # validation on name
    #   # #<User id: nil, name: nil, ...>
120
    def create(*args, &block)
121
      scoping { @klass.create(*args, &block) }
122 123
    end

124 125 126 127
    # Similar to #create, but calls +create!+ on the base class. Raises
    # an exception if a validation error occurs.
    #
    # Expects arguments in the same format as <tt>Base.create!</tt>.
128
    def create!(*args, &block)
129
      scoping { @klass.create!(*args, &block) }
P
Pratik Naik 已提交
130 131
    end

132 133
    # Tries to load the first record; if it fails, then <tt>create</tt> is called with the same arguments as this method.
    #
134
    # Expects arguments in the same format as +Base.create+.
135
    #
136 137 138 139
    # Note that the <tt>create</tt> will execute within the context of this scope, and that may for example
    # affect the result of queries within callbacks. If you don't want this, use the <tt>find_or_create_by</tt>
    # method.
    #
140
    # ==== Examples
141 142 143 144 145 146 147 148 149 150
    #   # Find the first user named Penélope or create a new one.
    #   User.where(:first_name => 'Penélope').first_or_create
    #   # => <User id: 1, first_name: 'Penélope', last_name: nil>
    #
    #   # Find the first user named Penélope or create a new one.
    #   # We already have one so the existing record will be returned.
    #   User.where(:first_name => 'Penélope').first_or_create
    #   # => <User id: 1, first_name: 'Penélope', last_name: nil>
    #
    #   # Find the first user named Scarlett or create a new one with a particular last name.
151
    #   User.where(:first_name => 'Scarlett').first_or_create(:last_name => 'Johansson')
152
    #   # => <User id: 2, first_name: 'Scarlett', last_name: 'Johansson'>
153
    #
154 155
    #   # Find the first user named Scarlett or create a new one with a different last name.
    #   # We already have one so the existing record will be returned.
156 157 158
    #   User.where(:first_name => 'Scarlett').first_or_create do |user|
    #     user.last_name = "O'Hara"
    #   end
159
    #   # => <User id: 2, first_name: 'Scarlett', last_name: 'Johansson'>
160 161
    def first_or_create(attributes = nil, &block)
      first || create(attributes, &block)
162 163 164 165
    end

    # Like <tt>first_or_create</tt> but calls <tt>create!</tt> so an exception is raised if the created record is invalid.
    #
166
    # Expects arguments in the same format as <tt>Base.create!</tt>.
167 168
    def first_or_create!(attributes = nil, &block)
      first || create!(attributes, &block)
169 170 171 172 173
    end

    # Like <tt>first_or_create</tt> but calls <tt>new</tt> instead of <tt>create</tt>.
    #
    # Expects arguments in the same format as <tt>Base.new</tt>.
174 175
    def first_or_initialize(attributes = nil, &block)
      first || new(attributes, &block)
176 177
    end

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
    # Finds the first record with the given attributes, or creates it if one does not exist.
    #
    # See also <tt>first_or_create</tt>.
    #
    # ==== Examples
    #   # Find the first user named Penélope or create a new one.
    #   User.find_or_create_by(first_name: 'Penélope')
    #   # => <User id: 1, first_name: 'Penélope', last_name: nil>
    def find_or_create_by(attributes, &block)
      find_by(attributes) || create(attributes, &block)
    end

    # Like <tt>find_or_create_by</tt>, but calls <tt>create!</tt> so an exception is raised if the created record is invalid.
    def find_or_create_by!(attributes, &block)
      find_by(attributes) || create!(attributes, &block)
    end

    # Like <tt>find_or_create_by</tt>, but calls <tt>new</tt> instead of <tt>create</tt>.
    def find_or_initialize_by(attributes, &block)
      find_by(attributes) || new(attributes, &block)
    end

200 201 202 203 204 205 206 207
    # Runs EXPLAIN on the query or queries triggered by this relation and
    # returns the result as a string. The string is formatted imitating the
    # ones printed by the database shell.
    #
    # Note that this method actually runs the queries, since the results of some
    # are needed by the next ones when eager loading is going on.
    #
    # Please see further details in the
O
Oscar Del Ben 已提交
208
    # {Active Record Query Interface guide}[http://guides.rubyonrails.org/active_record_querying.html#running-explain].
A
Arun Agrawal 已提交
209
    def explain
210 211
      _, queries = collecting_queries_for_explain { exec_queries }
      exec_explain(queries)
212
    end
X
Xavier Noria 已提交
213

O
Oscar Del Ben 已提交
214
    # Converts relation objects to Array.
215
    def to_a
J
Jon Leighton 已提交
216
      load
P
Pratik Naik 已提交
217 218 219
      @records
    end

220 221 222
    def as_json(options = nil) #:nodoc:
      to_a.as_json(options)
    end
223

R
Rizwan Reza 已提交
224
    # Returns size of the records.
225 226 227 228
    def size
      loaded? ? @records.length : count
    end

R
Rizwan Reza 已提交
229
    # Returns true if there are no records.
230
    def empty?
231 232 233 234
      return @records.empty? if loaded?

      c = count
      c.respond_to?(:zero?) ? c.zero? : c.empty?
235 236
    end

O
Oscar Del Ben 已提交
237
    # Returns true if there are any records.
P
Pratik Naik 已提交
238 239 240 241 242 243 244 245
    def any?
      if block_given?
        to_a.any? { |*block_args| yield(*block_args) }
      else
        !empty?
      end
    end

V
Vijay Dev 已提交
246
    # Returns true if there is more than one record.
P
Pratik Naik 已提交
247 248 249 250
    def many?
      if block_given?
        to_a.many? { |*block_args| yield(*block_args) }
      else
251
        limit_value ? to_a.many? : size > 1
P
Pratik Naik 已提交
252 253 254
      end
    end

255 256 257
    # Scope all queries to the current scope.
    #
    #   Comment.where(:post_id => 1).scoping do
258
    #     Comment.first # SELECT * FROM comments WHERE post_id = 1
259 260 261 262 263
    #   end
    #
    # Please check unscoped if you want to remove all previous scopes (including
    # the default_scope) during the execution of a block.
    def scoping
264 265 266 267
      previous, klass.current_scope = klass.current_scope, self
      yield
    ensure
      klass.current_scope = previous
268 269
    end

270 271 272 273 274 275 276 277 278 279 280 281
    # Updates all records with details given if they match a set of conditions supplied, limits and order can
    # also be supplied. This method constructs a single SQL UPDATE statement and sends it straight to the
    # database. It does not instantiate the involved models and it does not trigger Active Record callbacks
    # or validations.
    #
    # ==== Parameters
    #
    # * +updates+ - A string, array, or hash representing the SET part of an SQL statement.
    #
    # ==== Examples
    #
    #   # Update all customers with the given attributes
O
Oscar Del Ben 已提交
282
    #   Customer.update_all wants_email: true
283 284
    #
    #   # Update all books with 'Rails' in their title
O
Oscar Del Ben 已提交
285
    #   Book.where('title LIKE ?', '%Rails%').update_all(author: 'David')
286
    #
287
    #   # Update all books that match conditions, but limit it to 5 ordered by date
288
    #   Book.where('title LIKE ?', '%Rails%').order(:created_at).limit(5).update_all(:author => 'David')
289
    def update_all(updates)
290 291
      raise ArgumentError, "Empty list of attributes to change" if updates.blank?

292 293 294 295 296
      stmt = Arel::UpdateManager.new(arel.engine)

      stmt.set Arel.sql(@klass.send(:sanitize_sql_for_assignment, updates))
      stmt.table(table)
      stmt.key = table[primary_key]
A
Aaron Patterson 已提交
297

298 299 300 301 302 303
      if joins_values.any?
        @klass.connection.join_to_update(stmt, arel)
      else
        stmt.take(arel.limit)
        stmt.order(*arel.orders)
        stmt.wheres = arel.constraints
304
      end
305 306

      @klass.connection.update stmt, 'SQL', bind_values
307 308 309 310 311 312 313 314
    end

    # Updates an object (or multiple objects) and saves it to the database, if validations pass.
    # The resulting object is returned whether the object was saved successfully to the database or not.
    #
    # ==== Parameters
    #
    # * +id+ - This should be the id or an array of ids to be updated.
315
    # * +attributes+ - This should be a hash of attributes or an array of hashes.
316 317 318
    #
    # ==== Examples
    #
319
    #   # Updates one record
O
Oscar Del Ben 已提交
320
    #   Person.update(15, user_name: 'Samuel', group: 'expert')
321
    #
322
    #   # Updates multiple records
323 324 325 326
    #   people = { 1 => { "first_name" => "David" }, 2 => { "first_name" => "Jeremy" } }
    #   Person.update(people.keys, people.values)
    def update(id, attributes)
      if id.is_a?(Array)
327
        id.map.with_index { |one_id, idx| update(one_id, attributes[idx]) }
328 329 330 331 332 333 334
      else
        object = find(id)
        object.update_attributes(attributes)
        object
      end
    end

335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
    # Destroys the records matching +conditions+ by instantiating each
    # record and calling its +destroy+ method. Each object's callbacks are
    # executed (including <tt>:dependent</tt> association options and
    # +before_destroy+/+after_destroy+ Observer methods). Returns the
    # collection of objects that were destroyed; each will be frozen, to
    # reflect that no changes should be made (since they can't be
    # persisted).
    #
    # Note: Instantiation, callback execution, and deletion of each
    # record can be time consuming when you're removing many records at
    # once. It generates at least one SQL +DELETE+ query per record (or
    # possibly more, to enforce your callbacks). If you want to delete many
    # rows quickly, without concern for their associations or callbacks, use
    # +delete_all+ instead.
    #
    # ==== Parameters
    #
    # * +conditions+ - A string, array, or hash that specifies which records
    #   to destroy. If omitted, all records are destroyed. See the
    #   Conditions section in the introduction to ActiveRecord::Base for
    #   more information.
    #
    # ==== Examples
    #
    #   Person.destroy_all("last_login < '2004-04-04'")
O
Oscar Del Ben 已提交
360
    #   Person.destroy_all(status: "inactive")
R
Rodrigo Navarro 已提交
361
    #   Person.where(:age => 0..18).destroy_all
362 363 364 365
    def destroy_all(conditions = nil)
      if conditions
        where(conditions).destroy_all
      else
366
        to_a.each {|object| object.destroy }.tap { reset }
367
      end
P
Pratik Naik 已提交
368 369
    end

J
typo  
Jo Liss 已提交
370
    # Destroy an object (or multiple objects) that has the given id. The object is instantiated first,
371
    # therefore all callbacks and filters are fired off before the object is deleted. This method is
P
Pratik Naik 已提交
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
    # less efficient than ActiveRecord#delete but allows cleanup methods and other actions to be run.
    #
    # This essentially finds the object (or multiple objects) with the given id, creates a new object
    # from the attributes, and then calls destroy on it.
    #
    # ==== Parameters
    #
    # * +id+ - Can be either an Integer or an Array of Integers.
    #
    # ==== Examples
    #
    #   # Destroy a single object
    #   Todo.destroy(1)
    #
    #   # Destroy multiple objects
    #   todos = [1,2,3]
    #   Todo.destroy(todos)
    def destroy(id)
      if id.is_a?(Array)
        id.map { |one_id| destroy(one_id) }
      else
        find(id).destroy
      end
    end

397 398 399 400 401 402
    # Deletes the records matching +conditions+ without instantiating the records
    # first, and hence not calling the +destroy+ method nor invoking callbacks. This
    # is a single SQL DELETE statement that goes straight to the database, much more
    # efficient than +destroy_all+. Be careful with relations though, in particular
    # <tt>:dependent</tt> rules defined on associations are not honored. Returns the
    # number of rows affected.
P
Pratik Naik 已提交
403 404 405
    #
    #   Post.delete_all("person_id = 5 AND (category = 'Something' OR category = 'Else')")
    #   Post.delete_all(["person_id = ? AND (category = ? OR category = ?)", 5, 'Something', 'Else'])
R
Rodrigo Navarro 已提交
406
    #   Post.where(:person_id => 5).where(:category => ['Something', 'Else']).delete_all
P
Pratik Naik 已提交
407
    #
408 409
    # Both calls delete the affected posts all at once with a single DELETE statement.
    # If you need to destroy dependent associations or call your <tt>before_*</tt> or
R
Rizwan Reza 已提交
410
    # +after_destroy+ callbacks, use the +destroy_all+ method instead.
411 412 413 414 415
    #
    # If a limit scope is supplied, +delete_all+ raises an ActiveRecord error:
    #
    #   Post.limit(100).delete_all
    #   # => ActiveRecord::ActiveRecordError: delete_all doesn't support limit scope
P
Pratik Naik 已提交
416
    def delete_all(conditions = nil)
417 418
      raise ActiveRecordError.new("delete_all doesn't support limit scope") if self.limit_value

A
Aaron Patterson 已提交
419 420 421
      if conditions
        where(conditions).delete_all
      else
422 423 424 425 426 427 428 429 430 431
        stmt = Arel::DeleteManager.new(arel.engine)
        stmt.from(table)

        if joins_values.any?
          @klass.connection.join_to_delete(stmt, arel, table[primary_key])
        else
          stmt.wheres = arel.constraints
        end

        affected = @klass.connection.delete(stmt, 'SQL', bind_values)
432

A
Aaron Patterson 已提交
433 434 435
        reset
        affected
      end
P
Pratik Naik 已提交
436 437
    end

438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
    # Deletes the row with a primary key matching the +id+ argument, using a
    # SQL +DELETE+ statement, and returns the number of rows deleted. Active
    # Record objects are not instantiated, so the object's callbacks are not
    # executed, including any <tt>:dependent</tt> association options or
    # Observer methods.
    #
    # You can delete multiple rows at once by passing an Array of <tt>id</tt>s.
    #
    # Note: Although it is often much faster than the alternative,
    # <tt>#destroy</tt>, skipping callbacks might bypass business logic in
    # your application that ensures referential integrity or performs other
    # essential jobs.
    #
    # ==== Examples
    #
    #   # Delete a single row
    #   Todo.delete(1)
    #
    #   # Delete multiple rows
    #   Todo.delete([2,3,4])
458
    def delete(id_or_array)
459
      where(primary_key => id_or_array).delete_all
460 461
    end

J
Jon Leighton 已提交
462 463 464 465 466 467 468
    # Causes the records to be loaded from the database if they have not
    # been loaded already. You can use this if for some reason you need
    # to explicitly load some records before actually using them. The
    # return value is the relation itself, not the records.
    #
    #   Post.where(published: true).load # => #<ActiveRecord::Relation>
    def load
J
Jon Leighton 已提交
469 470 471 472 473 474 475 476 477 478 479 480
      unless loaded?
        # We monitor here the entire execution rather than individual SELECTs
        # because from the point of view of the user fetching the records of a
        # relation is a single unit of work. You want to know if this call takes
        # too long, not if the individual queries take too long.
        #
        # It could be the case that none of the queries involved surpass the
        # threshold, and at the same time the sum of them all does. The user
        # should get a query plan logged in that case.
        logging_query_plan { exec_queries }
      end

J
Jon Leighton 已提交
481 482 483
      self
    end

O
Oscar Del Ben 已提交
484
    # Forces reloading of relation.
485
    def reload
P
Pratik Naik 已提交
486
      reset
J
Jon Leighton 已提交
487
      load
P
Pratik Naik 已提交
488 489 490
    end

    def reset
491
      @first = @last = @to_sql = @order_clause = @scope_for_create = @arel = @loaded = nil
492
      @should_eager_load = @join_dependency = nil
P
Pratik Naik 已提交
493
      @records = []
494 495 496
      self
    end

O
Oscar Del Ben 已提交
497 498 499
    # Returns sql statement for the relation.
    #
    #   Users.where(name: 'Oscar').to_sql
500
    #   # => SELECT "users".* FROM "users"  WHERE "users"."name" = 'Oscar'
P
Pratik Naik 已提交
501
    def to_sql
502
      @to_sql ||= klass.connection.to_sql(arel, bind_values.dup)
P
Pratik Naik 已提交
503 504
    end

505
    # Returns a hash of where conditions
O
Oscar Del Ben 已提交
506
    #
507
    #   Users.where(name: 'Oscar').where_values_hash
O
Oscar Del Ben 已提交
508
    #   # => {:name=>"oscar"}
509
    def where_values_hash
510
      equalities = with_default_scope.where_values.grep(Arel::Nodes::Equality).find_all { |node|
A
Aaron Patterson 已提交
511 512 513
        node.left.relation.name == table_name
      }

514 515 516 517 518 519
      binds = Hash[bind_values.find_all(&:first).map { |column, v| [column.name, v] }]

      Hash[equalities.map { |where|
        name = where.left.name
        [name, binds.fetch(name.to_s) { where.right }]
      }]
520 521 522
    end

    def scope_for_create
523
      @scope_for_create ||= where_values_hash.merge(create_with_value)
P
Pratik Naik 已提交
524 525
    end

O
Oscar Del Ben 已提交
526
    # Returns true if relation needs eager loading.
527
    def eager_loading?
528
      @should_eager_load ||=
529 530
        eager_load_values.any? ||
        includes_values.any? && (joined_includes_values.any? || references_eager_loaded_tables?)
531 532 533 534 535 536 537
    end

    # Joins that are also marked for preloading. In which case we should just eager load them.
    # Note that this is a naive implementation because we could have strings and symbols which
    # represent the same association, but that aren't matched by this. Also, we could have
    # nested hashes which partially match, e.g. { :a => :b } & { :a => [:b, :c] }
    def joined_includes_values
538
      includes_values & joins_values
539 540
    end

O
Oscar Del Ben 已提交
541
    # Compares two relations for equality.
542 543 544 545 546
    def ==(other)
      case other
      when Relation
        other.to_sql == to_sql
      when Array
547
        to_a == other
548 549 550
      end
    end

551 552 553 554
    def pretty_print(q)
      q.pp(self.to_a)
    end

555
    def with_default_scope #:nodoc:
556
      if default_scoped? && default_scope = klass.send(:build_default_scope)
557 558 559
        default_scope = default_scope.merge(self)
        default_scope.default_scoped = false
        default_scope
560 561 562 563 564
      else
        self
      end
    end

565
    # Returns true if relation is blank.
566 567 568 569
    def blank?
      to_a.blank?
    end

570
    def values
571
      Hash[@values]
572 573
    end

574
    def inspect
575
      entries = to_a.take([limit_value, 11].compact.min).map!(&:inspect)
J
Jon Leighton 已提交
576
      entries[10] = '...' if entries.size == 11
577

J
Jon Leighton 已提交
578
      "#<#{self.class.name} [#{entries.join(', ')}]>"
579 580
    end

581 582
    private

J
Jon Leighton 已提交
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
    def exec_queries
      default_scoped = with_default_scope

      if default_scoped.equal?(self)
        @records = eager_loading? ? find_with_associations : @klass.find_by_sql(arel, bind_values)

        preload = preload_values
        preload +=  includes_values unless eager_loading?
        preload.each do |associations|
          ActiveRecord::Associations::Preloader.new(@records, associations).run
        end

        # @readonly_value is true only if set explicitly. @implicit_readonly is true if there
        # are JOINS and no explicit SELECT.
        readonly = readonly_value.nil? ? @implicit_readonly : readonly_value
        @records.each { |record| record.readonly! } if readonly
      else
        @records = default_scoped.to_a
      end

      @loaded = true
      @records
    end

607
    def references_eager_loaded_tables?
608 609 610 611 612 613 614 615 616 617
      joined_tables = arel.join_sources.map do |join|
        if join.is_a?(Arel::Nodes::StringJoin)
          tables_in_string(join.left)
        else
          [join.left.table_name, join.left.table_alias]
        end
      end

      joined_tables += [table.name, table.table_alias]

618
      # always convert table names to downcase as in Oracle quoted table names are in uppercase
619
      joined_tables = joined_tables.flatten.compact.map { |t| t.downcase }.uniq
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
      string_tables = tables_in_string(to_sql)

      if (references_values - joined_tables).any?
        true
      elsif (string_tables - joined_tables).any?
        ActiveSupport::Deprecation.warn(
          "It looks like you are eager loading table(s) (one of: #{string_tables.join(', ')}) " \
          "that are referenced in a string SQL snippet. For example: \n" \
          "\n" \
          "    Post.includes(:comments).where(\"comments.title = 'foo'\")\n" \
          "\n" \
          "Currently, Active Record recognises the table in the string, and knows to JOIN the " \
          "comments table to the query, rather than loading comments in a separate query. " \
          "However, doing this without writing a full-blown SQL parser is inherently flawed. " \
          "Since we don't want to write an SQL parser, we are removing this functionality. " \
          "From now on, you must explicitly tell Active Record when you are referencing a table " \
          "from a string:\n" \
          "\n" \
          "    Post.includes(:comments).where(\"comments.title = 'foo'\").references(:comments)\n\n"
        )
        true
      else
        false
      end
644 645 646 647
    end

    def tables_in_string(string)
      return [] if string.blank?
648
      # always convert table names to downcase as in Oracle quoted table names are in uppercase
649
      # ignore raw_sql_ that is used by Oracle adapter as alias for limit/offset subqueries
650
      string.scan(/([a-zA-Z_][.\w]+).?\./).flatten.map{ |s| s.downcase }.uniq - ['raw_sql_']
651
    end
652 653
  end
end