8 lines
157 B
Ruby
8 lines
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
|