(b []byte)
| 690 | return json.encodeInvertedIndexKeys(encoding.EncodeJSONAscending(b)) |
| 691 | } |
| 692 | func (j jsonNull) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 693 | b = encoding.AddJSONPathTerminator(b) |
| 694 | return [][]byte{encoding.EncodeNullAscending(b)}, nil |
| 695 | } |
| 696 | func (jsonTrue) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 697 | b = encoding.AddJSONPathTerminator(b) |
| 698 | return [][]byte{encoding.EncodeTrueAscending(b)}, nil |
nothing calls this directly
no test coverage detected