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

Function NewStringEqualPredicate

pkg/parquetquery/predicates.go:24–26  ·  view source on GitHub ↗

NewStringEqualPredicate is just an alias for the equivalent byte predicate

(s string)

Source from the content-addressed store, hash-verified

22
23// NewStringEqualPredicate is just an alias for the equivalent byte predicate
24func NewStringEqualPredicate(s string) Predicate {
25 return NewByteEqualPredicate([]byte(s))
26}
27
28// NewStringNotEqualPredicate is just an alias for the equivalent byte predicate
29func NewStringNotEqualPredicate(s string) Predicate {

Callers 3

createStringPredicateFunction · 0.92
createStringPredicateFunction · 0.92
createStringPredicateFunction · 0.92

Calls 1

NewByteEqualPredicateFunction · 0.85

Tested by

no test coverage detected