Method: Sequel::Postgres::PGRowOp.wrap

Defined in:
lib/sequel/extensions/pg_row_ops.rb

.wrap(expr) ⇒ Object

Wrap the expression in a PGRowOp, without changing the SQL it would use.



98
99
100
# File 'lib/sequel/extensions/pg_row_ops.rb', line 98

def self.wrap(expr)
  PGRowOp.new(WRAP, [expr])
end