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

Function NewStringNotEqualPredicate

pkg/parquetquery/predicates.go:29–31  ·  view source on GitHub ↗

NewStringNotEqualPredicate is just an alias for the equivalent byte predicate

(s string)

Source from the content-addressed store, hash-verified

27
28// NewStringNotEqualPredicate is just an alias for the equivalent byte predicate
29func NewStringNotEqualPredicate(s string) Predicate {
30 return NewByteNotEqualPredicate([]byte(s))
31}
32
33// ByteInPredicate checks for any of the given strings. Case-sensitive exact byte matching
34type ByteInPredicate struct {

Callers 3

createStringPredicateFunction · 0.92
createStringPredicateFunction · 0.92
createStringPredicateFunction · 0.92

Calls 1

NewByteNotEqualPredicateFunction · 0.85

Tested by

no test coverage detected