Skip to content

Commit

Permalink
string-functions: Use MySQL 8.0 url instead of 8.3 (#18243)
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden authored Jul 16, 2024
1 parent 76127c3 commit b72761c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions-and-operators/string-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ Arguments:

- `X`: the number to be formatted. It can be a direct numeric value, a numeric string, or a number in scientific notation.
- `D`: the number of decimal places for the returned value. The function rounds the number `X` to `D` decimal places. If `D` is greater than the actual number of decimal places in `X`, the result is padded with zeros to the corresponding length.
- `[locale]`: specifies a locale setting to be used for grouping between decimal points, thousands separators, and separators for resultant numbers. A valid locale value is the same as the valid value of the [`lc_time_names`](https://dev.mysql.com/doc/refman/8.3/en/server-system-variables.html#sysvar_lc_time_names) system variable. If not specified or the region setting is `NULL`, the `'en_US'` region setting is used by default. This argument is optional.
- `[locale]`: specifies a locale setting to be used for grouping between decimal points, thousands separators, and separators for resultant numbers. A valid locale value is the same as the valid value of the [`lc_time_names`](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lc_time_names) system variable. If not specified or the region setting is `NULL`, the `'en_US'` region setting is used by default. This argument is optional.

Behaviors:

Expand Down Expand Up @@ -2373,4 +2373,4 @@ The difference between TiDB and MySQL support for the binary string type:

### Known issues

- [GitHub Issue #37981](https://github.com/pingcap/tidb/issues/37981)
- [GitHub Issue #37981](https://github.com/pingcap/tidb/issues/37981)

0 comments on commit b72761c

Please sign in to comment.