Skip to content

Commit

Permalink
Fixes #9154.
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjevans committed Apr 5, 2021
1 parent efb2d94 commit 82388cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion v20.1/explain-analyze.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The DistSQL Plan Viewer displays the physical query plan, as well as execution s
Field | Description
------+------------
&lt;ProcessorName&gt;/&lt;n&gt; | The processor and processor ID used to read data into the SQL execution engine.<br><br>A processor is a component that takes streams of input rows, processes them according to a specification, and outputs one stream of rows. For example, an "aggregator" aggregates input rows.
&lt;index&gt;@&lt;table&gt; | The index used.
&lt;table&gt;@&lt;index&gt; | The index used.
Out | The output columns.
@&lt;n&gt; | The index of the column relative to the input.
Render | The stage that renders the output.
Expand Down
2 changes: 1 addition & 1 deletion v20.2/explain-analyze.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The DistSQL Plan Viewer displays the physical query plan, as well as execution s
Field | Description | Execution engine
------+-------------+----------------
&lt;Processor&gt;/&lt;id&gt; | The processor and processor ID used to read data into the SQL execution engine.<br><br>A processor is a component that takes streams of input rows, processes them according to a specification, and outputs one stream of rows. For example, a "TableReader" processor reads in data, and an "Aggregator" aggregates input rows. | Both
&lt;index&gt;@&lt;table&gt; | The index used by the processor. | Both
&lt;table&gt;@&lt;index&gt; | The index used by the processor. | Both
Spans | The interval of the key space read by the processor. For example, `[/1 - /1]` indicates that only the key with value `1` is read by the processor. | Both
Out | The output columns. | Both
batches output | The number of batches of columnar data output. | Vectorized engine only
Expand Down
2 changes: 1 addition & 1 deletion v21.1/explain-analyze.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ The graphical diagram when using the `DISTSQL` option displays the processors an
Field | Description | Execution engine
------+-------------+----------------
&lt;Processor&gt;/&lt;id&gt; | The processor and processor ID used to read data into the SQL execution engine.<br><br>A processor is a component that takes streams of input rows, processes them according to a specification, and outputs one stream of rows. For example, a "TableReader" processor reads in data, and an "Aggregator" aggregates input rows. | Both
&lt;index&gt;@&lt;table&gt; | The index used by the processor. | Both
&lt;table&gt;@&lt;index&gt; | The index used by the processor. | Both
Spans | The interval of the key space read by the processor. For example, `[/1 - /1]` indicates that only the key with value `1` is read by the processor. | Both
Out | The output columns. | Both
cluster nodes | The names of the CockroachDB cluster nodes involved in the execution of this processor. | Both
Expand Down

0 comments on commit 82388cb

Please sign in to comment.