Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.33 KB

README.md

File metadata and controls

37 lines (25 loc) · 1.33 KB

Build Status

jsonbx

As you know, PostgreSQL introduced Json(b) support at the 9.4 version, and hstore v2.0 saved in separate repository. But although PostgreSQL has this support at the core level, there are many useful functions, which wasn't ported to Json(b) from hstore v2.0 and json. Here is a review of the missing Json(b) functions, which will be implemented in this repo.

List of implemented functions

  • jsonb_indent
  • jsonb_concat
  • jsonb_delete(jsonb, text)
  • jsonb_delete_idx(jsonb, int)
  • jsonb_delete_path(jsonb, text[])
  • jsonb_set(jsonb, text[], jsonb, boolean)

List of implemented operators

  • concatenation operator (||)
  • delete key operator (jsonb - text)
  • delete key by index operator (jsonb - int)
  • delete key by path operator (jsonb - text[])

License

jsonbx is licensed under the same license as PostgreSQL itself

Contributors

jsonbx was created by Dmitry Dolgov portions written by Andrew Dunstan