PostgreSQL 9.4 intorduced the jsonb type, but it’d be nice to be able to delete keys and pairs using the “-” operator; just like you can with the hstore type. Fortunately postgres makes creating an operator really easy for us, so lets have a go at creating a delete operator for jsonb. First lets try […]
↧