From 4445637d29e3b79ebf6fedfdcea3367c0f6bc01b Mon Sep 17 00:00:00 2001 From: Zhen Li <95623444+zlifb@users.noreply.github.com> Date: Fri, 24 Nov 2023 13:42:55 +0100 Subject: [PATCH] FIR-28289 Change SUBSTRING's and parameters to BIGINT --- docs/sql-reference/functions-reference/substring.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sql-reference/functions-reference/substring.md b/docs/sql-reference/functions-reference/substring.md index 1c9f4301..4f3dcd41 100644 --- a/docs/sql-reference/functions-reference/substring.md +++ b/docs/sql-reference/functions-reference/substring.md @@ -21,8 +21,8 @@ SUBSTRING( [FROM ] [FOR ]) | Parameter | Description |Supported input types | | :--------- | :----------------------------------- | :---------------------| | `` | The input string. | `TEXT` | -| `` | Optional. The starting position for the substring. 1 is the first character. | `INTEGER` | -| `` | Optional. The number of characters to be returned by the `SUBSTRING` function. Must be positive or 0. If not specified, `count` by default returns all of the string not specified by the `start` parameter. | `INTEGER` | +| `` | Optional. The starting position for the substring. 1 is the first character. | `BIGINT` | +| `` | Optional. The number of characters to be returned by the `SUBSTRING` function. Must be positive or 0. If not specified, `count` by default returns all of the string not specified by the `start` parameter. | `BIGINT` | At least one of the optional arguments `` and `` must be given.