You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2023/01/04 05:17:10 UTC

[flink-table-store] branch master updated: [hotfix] fix typo in table-types

This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f41b26e [hotfix] fix typo in table-types
9f41b26e is described below

commit 9f41b26ed965d7ac19b90d5e79c359f653ed9c24
Author: JunZhang <zh...@126.com>
AuthorDate: Wed Jan 4 13:17:06 2023 +0800

    [hotfix] fix typo in table-types
    
    This closes #455
---
 docs/content/docs/features/table-types.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/content/docs/features/table-types.md b/docs/content/docs/features/table-types.md
index cd3f7aad..2826ab44 100644
--- a/docs/content/docs/features/table-types.md
+++ b/docs/content/docs/features/table-types.md
@@ -83,7 +83,7 @@ CREATE TABLE MyTable (
 
 Field `price` will be aggregated by the `max` function, and field `sales` will be aggregated by the `sum` function. Given two input records `<1, 23.0, 15>` and `<1, 30.2, 20>`, the final result will be `<1, 30.2, 35>`.
 
-Current supported aggregate functions are data types are:
+Current supported aggregate functions and data types are:
 
 * `sum`: supports DECIMAL, TINYINT, SMALLINT, INTEGER, BIGINT, FLOAT and DOUBLE.
 * `min`/`max`: support DECIMAL, TINYINT, SMALLINT, INTEGER, BIGINT, FLOAT, DOUBLE, DATE, TIME, TIMESTAMP and TIMESTAMP_LTZ.