Skip to content

Commit 435d1db

Browse files
authored
Remove subs attribute (#124551)
1 parent 04917c5 commit 435d1db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/query-languages/sql-limitations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@ SELECT age, MAX(salary) - MIN(salary) AS diff FROM test GROUP BY age ORDER BY di
116116
Using sub-selects (`SELECT X FROM (SELECT Y)`) is **supported to a small degree**: any sub-select that can be "flattened" into a single
117117
`SELECT` is possible with {es-sql}. For example:
118118

119-
```sql subs=attributes,macros
119+
```sql
120120
include-tagged::{sql-specs}/docs/docs.csv-spec[limitationSubSelect]
121121
```
122122

123123
The query above is possible because it is equivalent with:
124124

125-
```sql subs="attributes,macros
125+
```sql
126126
include-tagged::{sql-specs}/docs/docs.csv-spec[limitationSubSelectRewritten]
127127
```
128128

0 commit comments

Comments
 (0)