method

escape_sql_comment

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: QueryLogs
escape_sql_comment(content) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/query_logs.rb, line 111
        def escape_sql_comment(content)
          content.to_s.gsub(%{ (/ (?: | \g<1>) \*) \+? \s* | \s* (\* (?: | \g<2>) /) }, "")
        end
Register or log in to add new notes.