This is an automated email from the ASF dual-hosted git repository. alamb pushed a commit to branch alamb-patch-1 in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
commit 193178cbc90cb6463cf130dbadb0c9f9131fdf05 Author: Andrew Lamb <[email protected]> AuthorDate: Mon May 1 09:11:26 2023 -0400 Fix typo in SQL data types doc --- docs/source/user-guide/sql/data_types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user-guide/sql/data_types.md b/docs/source/user-guide/sql/data_types.md index 063976dc3d..1d3455abc2 100644 --- a/docs/source/user-guide/sql/data_types.md +++ b/docs/source/user-guide/sql/data_types.md @@ -38,7 +38,7 @@ the `arrow_typeof` function. For example: ``` You can cast a SQL expression to a specific Arrow type using the `arrow_cast` function -For example, to cast the output of `now()` to a `Timestamp` with second precision rather: +For example, to cast the output of `now()` to a `Timestamp` with second precision: ```sql ❯ select arrow_cast(now(), 'Timestamp(Second, None)');
