This is an automated email from the ASF dual-hosted git repository.
lidongdai pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/seatunnel-website.git
The following commit(s) were added to refs/heads/main by this push:
new 12afb95adb5 CONVERT-->CAST (#278)
12afb95adb5 is described below
commit 12afb95adb59d3a3124620e535726c21187e6c6b
Author: Shengjie Yan <[email protected]>
AuthorDate: Tue Nov 14 20:16:18 2023 +0800
CONVERT-->CAST (#278)
CONVERT(NAME AS INT)
==>
CAST(NAME AS INT)
---
versioned_docs/version-2.3.3/transform-v2/sql-functions.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/versioned_docs/version-2.3.3/transform-v2/sql-functions.md
b/versioned_docs/version-2.3.3/transform-v2/sql-functions.md
index dd8b8dbfdd1..1a9a5063ac8 100644
--- a/versioned_docs/version-2.3.3/transform-v2/sql-functions.md
+++ b/versioned_docs/version-2.3.3/transform-v2/sql-functions.md
@@ -860,7 +860,7 @@ Supported data types: STRING | VARCHAR, INT | INTEGER, LONG
| BIGINT, BYTE, FLOA
Example:
-CONVERT(NAME AS INT)
+CAST(NAME AS INT)
### COALESCE