Skip to content

Commit 8ec8c6a

Browse files
committed
Test with input from an index.
1 parent f76cf79 commit 8ec8c6a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,6 +1627,21 @@ inner_width:integer | centered_title:keyword
16271627
20 | < Title >
16281628
;
16291629

1630+
spaceNumberFromIndex
1631+
required_capability: space
1632+
FROM employees
1633+
| EVAL s = CONCAT("<",SPACE(languages),">")
1634+
| WHERE emp_no < 10005
1635+
| SORT emp_no
1636+
| KEEP emp_no, languages, s;
1637+
1638+
emp_no:integer | languages:integer | s:keyword
1639+
10001 | 2 | < >
1640+
10002 | 5 | < >
1641+
10003 | 4 | < >
1642+
10004 | 5 | < >
1643+
;
1644+
16301645
spaceZero
16311646
required_capability: space
16321647
ROW s = SPACE(0);

0 commit comments

Comments
 (0)