(b []byte)
| 1239 | } |
| 1240 | |
| 1241 | func (j jsonNumber) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 1242 | b = encoding.AddJSONPathTerminator(b) |
| 1243 | var dec = apd.Decimal(j) |
| 1244 | return [][]byte{encoding.EncodeDecimalAscending(b, &dec)}, nil |
| 1245 | } |
| 1246 | |
| 1247 | func (j jsonNumber) encodeContainingInvertedIndexSpans( |
| 1248 | b []byte, isRoot, isObjectValue bool, |
nothing calls this directly
no test coverage detected