From 7b974a576cdb1bb40ce45783f8768b21448f5b54 Mon Sep 17 00:00:00 2001 From: Tomoaki Kawada Date: Wed, 2 Oct 2024 19:57:09 +0900 Subject: [PATCH] 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 0e974550a84d..18c95cdea70e 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