MCPcopy Create free account
hub / github.com/dolthub/doltgresql / RemovePath

Method RemovePath

postgres/parser/json/encoded.go:682–688  ·  view source on GitHub ↗
(path []string)

Source from the content-addressed store, hash-verified

680}
681
682func (j *jsonEncoded) RemovePath(path []string) (JSON, bool, error) {
683 decoded, err := j.shallowDecode()
684 if err != nil {
685 return nil, false, err
686 }
687 return decoded.RemovePath(path)
688}
689
690func (j *jsonEncoded) doRemovePath(path []string) (JSON, bool, error) {
691 decoded, err := j.shallowDecode()

Callers

nothing calls this directly

Calls 2

shallowDecodeMethod · 0.95
RemovePathMethod · 0.65

Tested by

no test coverage detected