From 2e4709fd10277dc6936d619732350b2ac83ed16e Mon Sep 17 00:00:00 2001 From: Priyansh Agrawal Date: Mon, 9 Oct 2023 21:16:46 +0000 Subject: [PATCH] Remove "unsigned" from docs now that we support all ints. --- docs/en/sql-reference/functions/math-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/functions/math-functions.md b/docs/en/sql-reference/functions/math-functions.md index 90413b109dc..39b9f1d29ee 100644 --- a/docs/en/sql-reference/functions/math-functions.md +++ b/docs/en/sql-reference/functions/math-functions.md @@ -714,7 +714,7 @@ Result: ## byteSwap -Accepts an unsigned integer `operand` and returns the integer which is obtained by swapping the **endianness** of `operand` i.e. reversing the bytes of the `operand`. +Accepts an integer `operand` and returns the integer which is obtained by swapping the **endianness** of `operand` i.e. reversing the bytes of the `operand`. Currently, this is supported for up to 64-bit (signed and unsigned) integers.