@@ -25,7 +25,7 @@ under the License.
25
25
-->
26
26
27
27
It is a common use case to search for a set of event patterns, especially in case of data streams.
28
- Flink comes with a [ complex event processing (CEP) library] ({{ site.baseurl }}/ dev/libs/cep.html )
28
+ Flink comes with a [ complex event processing (CEP) library] ({% link dev/libs/cep.md %} )
29
29
which allows for pattern detection in event streams. Furthermore, Flink's SQL API provides a
30
30
relational way of expressing queries with a large set of built-in functions and rule-based
31
31
optimizations that can be used out of the box.
@@ -93,10 +93,10 @@ project.
93
93
{% endhighlight %}
94
94
95
95
Alternatively, you can also add the dependency to the cluster classpath (see the
96
- [ dependency section] ({{ site.baseurl}}/ dev/project-configuration.html ) for more information).
96
+ [ dependency section] ({% link dev/project-configuration.md %} ) for more information).
97
97
98
98
If you want to use the ` MATCH_RECOGNIZE ` clause in the
99
- [ SQL Client] ({{ site.baseurl}}/ dev/table/sqlClient.html ), you don't have to do anything as all the
99
+ [ SQL Client] ({% link dev/table/sqlClient.md %} ), you don't have to do anything as all the
100
100
dependencies are included by default.
101
101
102
102
### SQL Semantics
@@ -263,8 +263,8 @@ look at the [event stream navigation](#pattern-navigation) section.
263
263
### Aggregations
264
264
265
265
Aggregations can be used in ` DEFINE ` and ` MEASURES ` clauses. Both
266
- [ built-in] ({{ site.baseurl }}/ dev/table/functions/systemFunctions.html ) and custom
267
- [ user defined] ({{ site.baseurl }}/ dev/table/functions/udfs.html ) functions are supported.
266
+ [ built-in] ({% link dev/table/functions/systemFunctions.md %} ) and custom
267
+ [ user defined] ({% link dev/table/functions/udfs.md %} ) functions are supported.
268
268
269
269
Aggregate functions are applied to each subset of rows mapped to a match. In order to understand
270
270
how those subsets are evaluated have a look at the [ event stream navigation] ( #pattern-navigation )
0 commit comments