Method: Sequel::SQL::StringConcatenationMethods#+
- Defined in:
- lib/sequel/sql.rb
#+(ce) ⇒ Object
Return a StringExpression representing the concatenation of the receiver with the given argument.
:x.sql_string + :y # => "x" || "y"
945 946 947 |
# File 'lib/sequel/sql.rb', line 945 def +(ce) StringExpression.new(:'||', self, ce) end |