module Sequel::SQL::StringConcatenationMethods

def +(ce)

Sequel[:x].sql_string + :y # => "x" || "y"

with the given argument.
Return a +StringExpression+ representing the concatenation of the receiver
def +(ce)
  StringExpression.new(:'||', self, ce)
end