class ActiveRecord::OpenTracing::SqlSanitizer::SqlServer

Public Instance Methods

substitutions() click to toggle source
# File lib/active_record/open_tracing/sql_sanitizer/sql_server.rb, line 7
def substitutions
  [
    [SQLSERVER_EXECUTESQL, '\1'],
    [SQLSERVER_REMOVE_INTEGERS, "?"],
    [SQLSERVER_IN_CLAUSE, "IN (?)"]
  ]
end