debian-mirror-gitlab/debian/gems-compat/arel-8.0.0/lib/arel/alias_predication.rb

8 lines
No EOL
157 B
Ruby

# frozen_string_literal: true
module Arel
module AliasPredication
def as other
Nodes::As.new self, Nodes::SqlLiteral.new(other)
end
end
end