Skip to content

Commit 8a5630b

Browse files
committed
Group limitations
1 parent fe63238 commit 8a5630b

File tree

1 file changed

+6
-12
lines changed
  • docs/reference/query-languages/esql/_snippets/commands/layout

1 file changed

+6
-12
lines changed

docs/reference/query-languages/esql/_snippets/commands/layout/fork.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ serverless: preview
55
stack: preview 9.1.0
66
```
77
8-
The `FORK` processing command creates multiple execution branches to operate
8+
The `FORK` processing command creates multiple execution branches to operate
99
on the same input data and combines the results in a single output table.
1010

1111
**Syntax**
@@ -24,7 +24,7 @@ they designate which `FORK` branch the current row comes from.
2424
The values of the `_fork` column always start with `fork1`, which indicates that
2525
the row comes from the first branch.
2626

27-
`FORK` branches can output different columns, but columns with the
27+
`FORK` branches can output different columns, but columns with the
2828
same name must have the same data type across all branches.
2929

3030
When a column does not exist in a `FORK` branch, but it exists in the output of
@@ -39,17 +39,11 @@ this behaviour.
3939

4040
`FORK` branches receive an implicit `LIMIT 1000` if no `LIMIT` is provided.
4141

42-
::::{note}
43-
`FORK` supports at most 8 execution branches.
44-
::::
42+
Limitations and usage:
4543

46-
::::{note}
47-
Using remote cluster references and `FORK` is not supported.
48-
::::
49-
50-
::::{note}
51-
Using more than one `FORK` command in a query is not supported.
52-
::::
44+
- `FORK` supports at most 8 execution branches.
45+
- Using remote cluster references and `FORK` is not supported.
46+
- Using more than one `FORK` command in a query is not supported.
5347

5448
**Examples**
5549

0 commit comments

Comments
 (0)