Skip to content

Commit

Permalink
merge minor doc bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardttom2 committed Mar 9, 2018
1 parent 2c709df commit fccc459
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</para>

<para>
Please see <xref linkend="processingmodel_aggregation_output"/> for information on the types of queries discussed below.
Please see <xref linkend="processingmodel_aggregation"/> for information on the types of queries discussed below.
</para>

<sect1 xml:id="epl-output-unaggandungrouped">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<para>
The chapters are organized by the type of query: The presence or absence of aggregation functions, as well as the presence or absence of a <literal>group by</literal> clause change statement output as
described in <xref linkend="processingmodel_aggregation_output"/>.
described in <xref linkend="processingmodel_aggregation"/>.
</para>

<para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2000,7 +2000,7 @@ from ProductEvent as prod, OrderEvent as ord]]></programlisting>
</para>
<para>
Place expressions that remove unwanted events into parenthesis right after the event type, like <literal>... from OrderEvent(fraud.severity = 5 and amount > 500) ...</literal>.
There is related information at <xref linkend="processingmodel_filter"/> and <xref linkend="perf-tips-5"/>.
There is related information at <xref linkend="processingmodel_indexes_filterindexes"/> and <xref linkend="perf-tips-5"/>.
</para>
</tip>

Expand Down Expand Up @@ -2539,7 +2539,7 @@ c

<para>
The presence of <literal>group_by</literal> aggregation function parameters, the grouping expressions as well as the <literal>group-by</literal> clause
determine the number of output rows for queries as further described in <xref linkend="processingmodel_aggregation_output"/>.
determine the number of output rows for queries as further described in <xref linkend="processingmodel_aggregation"/>.
</para>

<para>
Expand Down Expand Up @@ -3149,7 +3149,7 @@ select symbol, sum(price) from StockTickEvent#groupwin(symbol)#length(10)</progr
<itemizedlist spacing="compact">
<listitem>
<para>
When no keyword is specified, the engine produces an output row for each row in the batch or when using group-by then an output per group only for those groups present in the batch, following <xref linkend="processingmodel_aggregation_output"/>.
When no keyword is specified, the engine produces an output row for each row in the batch or when using group-by then an output per group only for those groups present in the batch, following <xref linkend="processingmodel_aggregation"/>.
</para>
</listitem>
<listitem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2254,7 +2254,7 @@ having leaving()</programlisting>
recent values in data windows with a large number of events without incurring excessive overhead.
</para>
<para>
As compared to the <literal>prev</literal> row function, this aggregation function works within the current <literal>group by</literal> group, see <xref linkend="processingmodel_aggregation_output"/>.
As compared to the <literal>prev</literal> row function, this aggregation function works within the current <literal>group by</literal> group, see <xref linkend="processingmodel_aggregation"/>.
</para>
<para>
This statement outputs every 2 seconds the groups that have new data and their last price and the previous-to-last price:
Expand Down

0 comments on commit fccc459

Please sign in to comment.