Skip to content

Commit 11fef88

Browse files
committed
Update variable name in CONTAINS function examples and docs with nicer value
1 parent c45ca9d commit 11fef88

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/reference/query-languages/esql/_snippets/functions/examples/contains.md

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/functions/contains.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/docs/functions/contains.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/qa/testFixtures/src/main/resources/string.csv-spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,12 +392,12 @@ emp_no:integer | name:keyword
392392
contains#[skip:-9.2.99,reason:new string function added in 9.3]
393393
// tag::contains[]
394394
ROW a = "hello"
395-
| EVAL a_ll = CONTAINS(a, "ll")
395+
| EVAL has_ll = CONTAINS(a, "ll")
396396
// end::contains[]
397397
;
398398

399399
// tag::contains-result[]
400-
a:keyword | a_ll:boolean
400+
a:keyword | has_ll:boolean
401401
hello | true
402402
// end::contains-result[]
403403
;

0 commit comments

Comments
 (0)