module Sequel::Postgres::JSONOpMethods

Public Instance Methods

pg_json() click to toggle source

Wrap the receiver in an JSONOp so you can easily use the PostgreSQL json functions and operators with it.

    # File lib/sequel/extensions/pg_json_ops.rb
546 def pg_json
547   JSONOp.new(self)
548 end
pg_jsonb() click to toggle source

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
552 def pg_jsonb
553   JSONBOp.new(self)
554 end