(path []string)
| 1772 | var errCannotDeletePathInScalar = pgerror.WithCandidateCode(errors.New("cannot delete path in scalar"), pgcode.InvalidParameterValue) |
| 1773 | |
| 1774 | func (j jsonArray) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 1775 | func (j jsonObject) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 1776 | func (jsonNull) RemovePath([]string) (JSON, bool, error) { |
| 1777 | return nil, false, errCannotDeletePathInScalar |
nothing calls this directly
no test coverage detected