Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the documentation for the ABS() function. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9e1d78e90320b0134275b88d94643180 |
User & Date: | drh 2013-10-27 03:44:35.877 |
Context
2013-11-08
| ||
20:06 | First attempt at documenting WITHOUT ROWID. (check-in: 3819df0c0d user: drh tags: trunk) | |
2013-10-27
| ||
03:44 | Fix a typo in the documentation for the ABS() function. (check-in: 9e1d78e903 user: drh tags: trunk) | |
2013-10-19
| ||
16:21 | Updates to documentation for recent changes, especially the unlikely() function and STAT4. Also fix some typos. (check-in: 0998ee24a4 user: drh tags: trunk) | |
Changes
Changes to pages/lang.in.
︙ | ︙ | |||
2080 2081 2082 2083 2084 2085 2086 | <table border=0 cellpadding=10> <tcl> funcdef {abs(X)} {} { ^The abs(X) function returns the absolute value of the numeric argument X. ^Abs(X) returns NULL if X is NULL. ^(Abs(X) return 0.0 if X is a string or blob that cannot be converted to a numeric value.)^ ^If X is the | | | 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 | <table border=0 cellpadding=10> <tcl> funcdef {abs(X)} {} { ^The abs(X) function returns the absolute value of the numeric argument X. ^Abs(X) returns NULL if X is NULL. ^(Abs(X) return 0.0 if X is a string or blob that cannot be converted to a numeric value.)^ ^If X is the integer -9223372036854775808 then abs(X) throws an integer overflow error since there is no equivalent positive 64-bit two complement value. } funcdef {changes()} {} { ^The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement, exclusive of statements in lower-level triggers. |
︙ | ︙ |