Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update pg-ops/- docstring wrt array input
The `-` operator also works for arrays: ```sql select '{"a":1,"b":2,"c":3}' - array['a','b']; -- => {c:3} select '["a","b","c"]'::jsonb - array['a','b'] -- => ["c"] ```
- Loading branch information