Remove subs attribute (#124551)

This commit is contained in:
Jan Calanog 2025-03-11 12:14:58 +01:00 committed by GitHub
parent 04917c5ea3
commit 435d1db5b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -116,13 +116,13 @@ SELECT age, MAX(salary) - MIN(salary) AS diff FROM test GROUP BY age ORDER BY di
Using sub-selects (`SELECT X FROM (SELECT Y)`) is **supported to a small degree**: any sub-select that can be "flattened" into a single
`SELECT` is possible with {es-sql}. For example:
```sql subs=attributes,macros
```sql
include-tagged::{sql-specs}/docs/docs.csv-spec[limitationSubSelect]
```
The query above is possible because it is equivalent with:
```sql subs="attributes,macros
```sql
include-tagged::{sql-specs}/docs/docs.csv-spec[limitationSubSelectRewritten]
```