Skip to content

Commit 4943cca

Browse files
committed
Fix failing test from deleted ; character
1 parent 609ee51 commit 4943cca

File tree

1 file changed

+3
-2
lines changed
  • x-pack/plugin/esql/qa/testFixtures/src/main/resources

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ required_capability: hash_function
2626
FROM sample_data
2727
| WHERE message != "Connection error"
2828
| EVAL input = event_duration::STRING, md5 = hash("md5", input), sha256 = hash("sha256", input)
29-
| KEEP message, input, md5, sha256;
29+
| KEEP message, input, md5, sha256
30+
;
3031
ignoreOrder:true
3132

3233
message:keyword | input:keyword | md5:keyword | sha256:keyword
@@ -142,7 +143,7 @@ FROM sample_data
142143
| EVAL sha1 = sha1(message)
143144
| KEEP message, sha1
144145
// end::sha1[]
145-
146+
;
146147
ignoreOrder:true
147148

148149
// tag::sha1-result[]

0 commit comments

Comments
 (0)