MCPcopy
hub / github.com/grafana/tempo / NewStringNotInPredicate

Function NewStringNotInPredicate

pkg/parquetquery/predicates.go:113–121  ·  view source on GitHub ↗
(ss []string)

Source from the content-addressed store, hash-verified

111var _ Predicate = (*ByteNotInPredicate)(nil)
112
113func NewStringNotInPredicate(ss []string) Predicate {
114 p := &ByteNotInPredicate{
115 values: make([][]byte, len(ss)),
116 }
117 for i := range ss {
118 p.values[i] = []byte(ss[i])
119 }
120 return p
121}
122
123func NewByteNotInPredicate(bb [][]byte) Predicate {
124 return &ByteNotInPredicate{

Callers 4

createStringPredicateFunction · 0.92
createStringPredicateFunction · 0.92
createStringPredicateFunction · 0.92

Calls

no outgoing calls

Tested by 1