File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed
x-pack/plugin/esql/qa/testFixtures/src/main/resources Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ FROM books
1010| WHERE KQL("author: Faulkner")
1111| KEEP book_no, author
1212| SORT book_no
13- | LIMIT 5;
13+ | LIMIT 5
1414// end::kql-with-field[]
15+ ;
1516
1617// tag::kql-with-field-result[]
1718book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
20212847 | Colleen Faulkner
21222883 | William Faulkner
22233293 | Danny Faulkner
23- ;
2424// end::kql-with-field-result[]
25+ ;
2526
2627kqlWithMultipleFields
2728required_capability: kql_function
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ FROM books
1010| WHERE MATCH(author, "Faulkner")
1111| KEEP book_no, author
1212| SORT book_no
13- | LIMIT 5;
13+ | LIMIT 5
1414// end::match-with-field[]
15+ ;
1516
1617// tag::match-with-field-result[]
1718book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
20212847 | Colleen Faulkner
21222883 | William Faulkner
22233293 | Danny Faulkner
23- ;
2424// end::match-with-field-result[]
25+ ;
2526
2627matchWithMultipleFunctions
2728required_capability: match_function
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ FROM books
1010| WHERE author:"Faulkner"
1111| KEEP book_no, author
1212| SORT book_no
13- | LIMIT 5;
13+ | LIMIT 5
1414// end::match-with-field[]
15+ ;
1516
1617// tag::match-with-field-result[]
1718book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
20212847 | Colleen Faulkner
21222883 | William Faulkner
22233293 | Danny Faulkner
23- ;
2424// end::match-with-field-result[]
25+ ;
2526
2627matchWithMultipleFunctions
2728required_capability: match_operator_colon
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ FROM books
1010| WHERE QSTR("author: Faulkner")
1111| KEEP book_no, author
1212| SORT book_no
13- | LIMIT 5;
13+ | LIMIT 5
1414// end::qstr-with-field[]
15+ ;
1516
1617// tag::qstr-with-field-result[]
1718book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
20212847 | Colleen Faulkner
21222883 | William Faulkner
22233293 | Danny Faulkner
23- ;
2424// end::qstr-with-field-result[]
25+ ;
2526
2627qstrWithMultipleFields
2728required_capability: qstr_function
You can’t perform that action at this time.
0 commit comments