This is an automated email from the ASF dual-hosted git repository. sjwiesman pushed a commit to branch release-1.13 in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.13 by this push: new 2c24525 [hotfix][docs] fix typo in SQL functions 2c24525 is described below commit 2c24525392685426a8c637ed77002d71ea2a4b78 Author: Yik San Chan <evan.chanyik...@gmail.com> AuthorDate: Tue Jul 6 17:25:45 2021 +0800 [hotfix][docs] fix typo in SQL functions This closes #16390 --- docs/data/sql_functions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/sql_functions.yml b/docs/data/sql_functions.yml index e8d2826..d71caf9 100644 --- a/docs/data/sql_functions.yml +++ b/docs/data/sql_functions.yml @@ -458,7 +458,7 @@ temporal: - sql: FLOOR(timepoint TO timeintervalunit) table: TIMEPOINT.floor(TIMEINTERVALUNIT) description: Returns a value that rounds timepoint down to the time unit timeintervalunit. E.g., FLOOR(TIME '12:44:31' TO MINUTE) returns 12:44:00. - - sql: CEIL(timespoint TO timeintervaluntit) + - sql: CEIL(timepoint TO timeintervaluntit) table: TIMEPOINT.ceil(TIMEINTERVALUNIT) description: Returns a value that rounds timepoint up to the time unit timeintervalunit. E.g., CEIL(TIME '12:44:31' TO MINUTE) returns 12:45:00. - sql: (timepoint1, temporal1) OVERLAPS (timepoint2, temporal2)