You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/preview/sql/functions/text.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ This section describes functions and operators for examining and manipulating [`
38
38
|[`contains(string, search_string)`](#containsstring-search_string)| Returns `true` if `search_string` is found within `string`. |
39
39
|[`ends_with(string, search_string)`](#ends_withstring-search_string)| Returns `true` if `string` ends with `search_string`. |
40
40
|[`format(format, ...)`](#formatformat-)| Formats a string using the [fmt syntax](#fmt-syntax). |
41
-
|[`formatReadableDecimalSize(integer)`](#formatreadabledecimalsizeinteger)| Converts `integer` to a human-readable representation (e.g. 16000 -> 16.0 KB). |
41
+
|[`formatReadableDecimalSize(integer)`](#formatreadabledecimalsizeinteger)| Converts `integer` to a human-readable representation using units based on powers of 10 (KB, MB, GB, etc.). |
42
42
|[`formatReadableSize(integer)`](#formatreadablesizeinteger)| Converts `integer` to a human-readable representation using units based on powers of 2 (KiB, MiB, GiB, etc.). |
43
43
|[`format_bytes(integer)`](#format_bytesinteger)| Converts `integer` to a human-readable representation using units based on powers of 2 (KiB, MiB, GiB, etc.). |
44
44
|[`from_base64(string)`](#from_base64string)| Converts a base64 encoded `string` to a character string (`BLOB`). |
@@ -315,16 +315,16 @@ This section describes functions and operators for examining and manipulating [`
315
315
316
316
<divclass="nostroke_table"></div>
317
317
318
-
|**Description**| Converts `integer` to a human-readable representation (e.g. 16000 -> 16.0 KB). |
0 commit comments