# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class CurrentRole < Arel::Nodes::Node end end module Visitors class ToSql def visit_Arel_Nodes_CurrentRole(_o, collector) collector << 'current_role' end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName