From 0637c90e1137db03ad9946bc7c986e8fc0ee9a9f Mon Sep 17 00:00:00 2001 From: Tomoaki Kawada Date: Wed, 2 Oct 2024 13:55:52 +0900 Subject: [PATCH] Fix malformed hex string literal in docs --- 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