Wrap the receiver in an JSONOp so you can easily use the PostgreSQL json functions and operators with it.
[Source]
# File lib/sequel/extensions/pg_json_ops.rb, line 422 422: def pg_json 423: JSONOp.new(self) 424: end
Wrap the receiver in an JSONBOp so you can easily use the PostgreSQL jsonb functions and operators with it.
# File lib/sequel/extensions/pg_json_ops.rb, line 428 428: def pg_jsonb 429: JSONBOp.new(self) 430: end
[Validate]