diff options
author | drh <> | 2023-08-18 15:39:38 +0000 |
---|---|---|
committer | drh <> | 2023-08-18 15:39:38 +0000 |
commit | 4d8eb16f075e1c18f0277b9702e9507bb1657b56 (patch) | |
tree | f95622eaec1ba4ca47430f5cf5f8142533b62f49 /src | |
parent | d5a9d522fb8846d9919fdacfacecd29e89be29d1 (diff) | |
download | sqlite-4d8eb16f075e1c18f0277b9702e9507bb1657b56.tar.gz sqlite-4d8eb16f075e1c18f0277b9702e9507bb1657b56.zip |
Rename the decimal_sci() function to decimal_exp().
[forum:/forumpost/fa027bb0ab|Forum post fa027bb0ab].
FossilOrigin-Name: c48f1be8cc505a7e2902c79e26c1d9a121ff5c55785ac812d2e09232b2414695
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index cb29736fb..97deb64cf 100644 --- a/src/util.c +++ b/src/util.c @@ -1020,7 +1020,7 @@ void sqlite3FpDecode(FpDecode *p, double r, int iRound, int mxRound){ ** The error terms on constants like 1.0e+100 computed using the ** decimal extension, for example as follows: ** - ** SELECT decimal_sci(decimal_sub('1.0e+100',decimal(1.0e+100))); + ** SELECT decimal_exp(decimal_sub('1.0e+100',decimal(1.0e+100))); */ double rr[2]; rr[0] = r; |