Skip to content

Commit 79515a9

Browse files
Update docs/changelog/130427.yaml
Co-authored-by: Liam Thompson <[email protected]>
1 parent 2ba48ed commit 79515a9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/changelog/130427.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ 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. `FROM index(1) | ENRICH policy(2)`
11+
Previously, ES|QL accepted unquoted index patterns containing brackets, such as `FROM index(1) | ENRICH policy(2)`.
1212
13-
This can potentially conflict with subquery syntax, that uses brackets as a delimiter.
13+
This query syntax is no longer valid because it could conflict with subquery syntax, where brackets are used as delimiters.
1414
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)"`
15+
Brackets are now only allowed in quoted index patterns. For example: `FROM "index(1)" | ENRICH "policy(2)"`.
1716
impact: "This affects existing queries containing brackets in index or policy names, i.e. in FROM, ENRICH, and LOOKUP JOIN commands."
1817
notable: false

0 commit comments

Comments
 (0)