diff options
author | drh <> | 2023-07-01 15:23:24 +0000 |
---|---|---|
committer | drh <> | 2023-07-01 15:23:24 +0000 |
commit | 9ee9444a0adbf8f04081447d70d570f17c1a6e6a (patch) | |
tree | fa03bf2abe4a0407f771e5c5ff059dc7542a06fc /src/sqliteInt.h | |
parent | 42d042e602233be808084e78ccbaba1b497c69a3 (diff) | |
download | sqlite-9ee9444a0adbf8f04081447d70d570f17c1a6e6a.tar.gz sqlite-9ee9444a0adbf8f04081447d70d570f17c1a6e6a.zip |
Improved response to Infinity and NaN. Remove the termporary fpdecode()
function.
FossilOrigin-Name: 76ab8ae809a47a66688e2d50c20dc87ce946d82e9ffebb3adda55c451fad07fc
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 96cac978c..011a44bcb 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4604,8 +4604,7 @@ struct PrintfArguments { */ struct FpDecode { char sign; /* '+' or '-' */ - char isNan; /* True if not-a-number */ - char isInf; /* True if infinity */ + char isSpecial; /* 1: Infinity 2: NaN */ int n; /* Significant digits in the decode */ int iDP; /* Location of the decimal point */ char z[24]; /* Significiant digits */ |