# File lib/new_relic/agent/database/obfuscation_helpers.rb, line 54 def obfuscate_single_quote_literals(sql) return sql unless sql =~ COMPONENTS_REGEX_MAP[:single_quotes] sql.gsub(COMPONENTS_REGEX_MAP[:single_quotes], PLACEHOLDER) end