Skip to content

Commit

Permalink
Fix malformed hex string literal in docs (#12708)
Browse files Browse the repository at this point in the history
  • Loading branch information
kawadakk authored Oct 2, 2024
1 parent ed0949e commit 7b974a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/user-guide/sql/data_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7b974a5

Please sign in to comment.