Skip to content

Commit

Permalink
Mention in the docs that to_string is not locale-aware
Browse files Browse the repository at this point in the history
Fixes #60440
  • Loading branch information
elpaso committed Feb 6, 2025
1 parent aa8c168 commit 685a002
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/function_help/json/to_string
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"description": "Converts a number to string.",
"arguments": [{
"arg": "number",
"description": "Integer or real value. The number to convert to string."
"description": "Integer or real value. The number to convert to string. The conversion is not locale-aware, see 'format_number' for a locale-aware alternative."
}],
"examples": [{
"expression": "to_string(123)",
"returns": "'123'"
"expression": "to_string(1.23)",
"returns": "'1.23'"
}],
"tags": ["converts", "number"]
}

0 comments on commit 685a002

Please sign in to comment.