-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquery_summary.rb
48 lines (40 loc) · 1.1 KB
/
query_summary.rb
1
2
3
4
5
6
7
8
9
10
11
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
42
43
44
45
46
47
48
# frozen_string_literal: true
module RSpec
module Sql
# Converts a list of queries into a summary hash.
class QuerySummary
QUERY_TYPES = %i[delete insert select update].freeze
attr_reader :summary
def initialize(queries)
@summary = {}
queries.each do |payload|
type = get_type(payload[:sql])
next if QUERY_TYPES.exclude?(type) || pg_query?(payload[:sql])
table = get_table(payload[:sql])
@summary[type] ||= {}
@summary[type][table] ||= 0
@summary[type][table] += 1
end
end
private
def get_table(sql)
sql_parts = sql.split
case get_type(sql)
when :insert
sql_parts[2]
when :update
sql_parts[1]
else
table_index = sql_parts.index("FROM")
sql_parts[table_index + 1]
end.gsub(/(\\|")/, "").to_sym
end
def get_type(sql)
sql.split[0].downcase.to_sym
end
def pg_query?(sql)
sql.include?("SELECT a.attname") || sql.include?("pg_attribute")
end
end
end
end