Method: Sequel::Postgres::JSONExistsOp#to_s_append

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

#to_s_append(ds, sql) ⇒ Object

Append the SQL function call expression to the SQL



938
939
940
941
942
943
# File 'lib/sequel/extensions/pg_json_ops.rb', line 938

def to_s_append(ds, sql)
  to_s_append_function_name(ds, sql)
  to_s_append_args_passing(ds, sql)
  to_s_append_on_error(ds, sql)
  sql << ')'
end