mirror of
https://github.com/SigNoz/signoz.git
synced 2026-06-20 23:30:31 +01:00
Some checks failed
build-staging / prepare (push) Has been cancelled
build-staging / js-build (push) Has been cancelled
build-staging / go-build (push) Has been cancelled
build-staging / staging (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
* fix: fts warning miss in direct text search * fix: comments * test: added one more test variation * ci: go lint * fix: fts warning update * fix: integration tests * fix: go test and fmtlint
16 lines
531 B
Go
16 lines
531 B
Go
package querybuilder
|
|
|
|
const (
|
|
TrueConditionLiteral = "true"
|
|
SkipConditionLiteral = "__skip__"
|
|
ErrorConditionLiteral = "__skip_because_of_error__"
|
|
|
|
// BodyFullTextSearchDefaultWarning is emitted when a full-text search or "body" searches are hit
|
|
// with New JSON Body enhancements.
|
|
BodyFullTextSearchDefaultWarning = "Full text searches default to `body.message:string`. Use `body.<key>` to search a different field inside body"
|
|
)
|
|
|
|
var (
|
|
SkippableConditionLiterals = []string{SkipConditionLiteral, ErrorConditionLiteral}
|
|
)
|