Module: ArJdbc::MSSQL::LimitHelpers::SqlServerReplaceLimitOffset

Included in:
Arel::Visitors::SQLServer
Defined in:
lib/arjdbc/mssql/limit_helpers.rb

Class Method Summary collapse

Class Method Details

.replace_limit_offset!(sql, limit, offset, order) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/arjdbc/mssql/limit_helpers.rb', line 12

def replace_limit_offset!(sql, limit, offset, order)
  if limit
    offset ||= 0
    start_row, end_row = offset + 1, offset + limit.to_i

    if match = FIND_SELECT.match(sql)
      select, distinct, rest_of_query = match[1], match[2], match[3]
      rest_of_query.strip!
    end
    rest_of_query[0] = '*' if rest_of_query[0...1] == '1' && rest_of_query !~ /1 AS/i
    if rest_of_query[0...1] == '*'
      from_table = Utils.get_table_name(rest_of_query, true)
      rest_of_query = "#{from_table}.#{rest_of_query}"
    end

    if distinct # select =~ /DISTINCT/i
      order = order.gsub(/([a-z0-9_])+\./, 't.')
      new_sql = "SELECT t.* FROM "
      new_sql << "( SELECT ROW_NUMBER() OVER(#{order}) AS _row_num, t.* FROM (#{select} #{rest_of_query}) AS t ) AS t"
      new_sql << " WHERE t._row_num BETWEEN #{start_row} AND #{end_row}"
    else
      new_sql = "#{select} t.* FROM "
      new_sql << "( SELECT ROW_NUMBER() OVER(#{order}) AS _row_num, #{rest_of_query} ) AS t"
      new_sql << " WHERE t._row_num BETWEEN #{start_row} AND #{end_row}"
    end

    sql.replace(new_sql)
  end
  sql
end