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

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 7b974a576c Fix malformed hex string literal in docs (#12708)
7b974a576c is described below

commit 7b974a576cdb1bb40ce45783f8768b21448f5b54
Author: Tomoaki Kawada <[email protected]>
AuthorDate: Wed Oct 2 19:57:09 2024 +0900

    Fix malformed hex string literal in docs (#12708)
---
 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 0e974550a8..18c95cdea7 100644
--- a/docs/source/user-guide/sql/data_types.md
+++ b/docs/source/user-guide/sql/data_types.md
@@ -97,7 +97,7 @@ select arrow_cast(now(), 'Timestamp(Second, None)');
 | `BYTEA`      | `Binary`       |
 
 You can create binary literals using a hex string literal such as
-`X'1234` to create a `Binary` value of two bytes, `0x12` and `0x34`.
+`X'1234'` to create a `Binary` value of two bytes, `0x12` and `0x34`.
 
 ## Unsupported SQL Types
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to