Skip to content

Commit 582612d

Browse files
No triple backticks
1 parent 7a78921 commit 582612d

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

docs/changelog/130427.yaml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,11 @@ breaking:
88
title: Unquoted index patterns do not allow `(` and `)` characters
99
area: ES|QL
1010
details: >-
11-
So far, ES|QL accepted unquoted index patterns containing brackets, eg.
12-
13-
```
14-
FROM index(1) | ENRICH policy(2)
15-
```
11+
So far, ES|QL accepted unquoted index patterns containing brackets, eg. `FROM index(1) | ENRICH policy(2)`
1612
1713
This can potentially conflict with subquery syntax, that uses brackets as a delimiter.
18-
From now on, using brackets is only allowed in quoted index patterns, ie. the query above is no longer valid,
19-
while the following is valid
2014
21-
```
22-
FROM "index(1)" | ENRICH "policy(2)"
23-
```
15+
From now on, using brackets is only allowed in quoted index patterns, ie. the query above is no longer valid,
16+
while the following is valid: `FROM "index(1)" | ENRICH "policy(2)"`
2417
impact: "It impacts all the queries that contain brackets in index names or policy names, ie. in FROM, ENRICH and LOOKUP JOIN commands"
2518
notable: false

0 commit comments

Comments
 (0)