Two typos in Built-In Scalar SQL Functions docs
(1) By jmcb (joelsgp) on 2023-10-19 16:55:50 [source]
The grammar errors are in the docs for octet_length and printf, close by to one another:
Thus, octet_length(X) is efficient even if X is column containing a multi-megabyte text or blob value.
should be
Thus, octet_length(X) is efficient even if X is *a* column containing a multi-megabyte text or blob value.
and
The format() SQL function was original named printf().
should be
The format() SQL function was original*ly* named printf().
Asterisks for emphasis in bug report, not to be includedi in fix.
Thanks!
(2) By Larry Brasfield (larrybr) on 2023-10-19 17:14:56 in reply to 1 [link] [source]
Thanks for the report. Fixed now.