We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8878a0 commit 93d45fcCopy full SHA for 93d45fc
x-pack/plugin/esql/qa/testFixtures/src/main/resources/dense_vector.csv-spec
@@ -11,3 +11,32 @@ id:l | vector:dense_vector
11
0 | [1.0, 2.0, 3.0]
12
1 | [4.0, 5.0, 6.0]
13
;
14
+
15
+denseVectorWithEval
16
+required_capability: dense_vector_field_type
17
18
+FROM dense_vector
19
+| EVAL v = vector
20
+| KEEP id, v
21
+| SORT id
22
+;
23
24
+id:l | v:dense_vector
25
+0 | [1.0, 2.0, 3.0]
26
+1 | [4.0, 5.0, 6.0]
27
28
29
+denseVectorWithRenameAndDrop
30
31
32
33
34
+| RENAME v AS new_vector
35
+| DROP vector
36
37
38
39
+id:l | new_vector:dense_vector
40
41
42
0 commit comments