(b []byte)
| 702 | return [][]byte{encoding.EncodeFalseAscending(b)}, nil |
| 703 | } |
| 704 | func (j jsonString) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 705 | b = encoding.AddJSONPathTerminator(b) |
| 706 | return [][]byte{encoding.EncodeStringAscending(b, string(j))}, nil |
| 707 | } |
| 708 | func (j jsonNumber) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 709 | b = encoding.AddJSONPathTerminator(b) |
| 710 | var dec = apd.Decimal(j) |
nothing calls this directly
no test coverage detected