import type { OperatorDefinition } from '../../definition_types'; /** * Use the match operator (`:`) to perform a match query on the specified field or expression. * Using `:` is equivalent to using the `match` query in the Elasticsearch Query DSL. * * The match operator is equivalent to the match function. * * For using the function syntax, or adding match query parameters, you can use the * match function. * * `:` returns true if the provided query matches the row. * * @example * FROM books * | WHERE author:"Faulkner" * * @example * FROM employees * | WHERE job_positions:"Internship" * | KEEP emp_no, job_positions * * @example * FROM books METADATA _score * | WHERE semantic_title:"Shakespeare" * | SORT _score DESC * | KEEP _score, semantic_title */ declare const definition: OperatorDefinition; export default definition; //# sourceMappingURL=match_operator.d.ts.map