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

jingge pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new d04090c34b6 [hotfix][doc] to_timestamp() should use order_time_string 
column instead of order_time
d04090c34b6 is described below

commit d04090c34b616a387a68cbb4ded1b696f7d88626
Author: jingge <gej...@gmail.com>
AuthorDate: Wed Mar 1 21:42:27 2023 +0100

    [hotfix][doc] to_timestamp() should use order_time_string column instead of 
order_time
---
 docs/content.zh/docs/dev/table/sql/create.md | 2 +-
 docs/content/docs/dev/table/sql/create.md    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content.zh/docs/dev/table/sql/create.md 
b/docs/content.zh/docs/dev/table/sql/create.md
index d480161a389..73bfbf1eea1 100644
--- a/docs/content.zh/docs/dev/table/sql/create.md
+++ b/docs/content.zh/docs/dev/table/sql/create.md
@@ -482,7 +482,7 @@ CREATE TABLE Orders_in_file (
     `user` BIGINT,
     product STRING,
     order_time_string STRING,
-    order_time AS to_timestamp(order_time)
+    order_time AS to_timestamp(order_time_string)
     
 )
 PARTITIONED BY (`user`) 
diff --git a/docs/content/docs/dev/table/sql/create.md 
b/docs/content/docs/dev/table/sql/create.md
index 99b064ad7dd..69d3dd24f67 100644
--- a/docs/content/docs/dev/table/sql/create.md
+++ b/docs/content/docs/dev/table/sql/create.md
@@ -482,7 +482,7 @@ CREATE TABLE Orders_in_file (
     `user` BIGINT,
     product STRING,
     order_time_string STRING,
-    order_time AS to_timestamp(order_time)
+    order_time AS to_timestamp(order_time_string)
     
 )
 PARTITIONED BY (`user`) 

Reply via email to