--
-- bool/1
--
create or replace function bool(
  jsonb
) returns bool as $$
jsonb_bool$$ language plpgsql;


--
-- bool/1
--
create or replace function bool(
  integer
) returns bool as $$
int4_bool$$ language plpgsql;