diff options
author | drh <> | 2023-07-03 14:56:49 +0000 |
---|---|---|
committer | drh <> | 2023-07-03 14:56:49 +0000 |
commit | 1b3c6e727e11417a687fc09193828f5142a1b195 (patch) | |
tree | 9cb167b0550e15ea18adf43afddd9ab4de1eef9c /src/sqliteInt.h | |
parent | 0478d1d88a523d3d8e5c8d5acd7eb9649937ec65 (diff) | |
download | sqlite-1b3c6e727e11417a687fc09193828f5142a1b195.tar.gz sqlite-1b3c6e727e11417a687fc09193828f5142a1b195.zip |
Whether or not to use the long-double floating point conversion technique
is now a test-control setting.
FossilOrigin-Name: 02ae6caff1f7925c696ad263fe78b1036364d24b6373e1baec10d53aafb14a12
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 5662ab4fd..8eae8d166 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4090,6 +4090,7 @@ struct Sqlite3Config { u8 bUseCis; /* Use covering indices for full-scans */ u8 bSmallMalloc; /* Avoid large memory allocations if true */ u8 bExtraSchemaChecks; /* Verify type,name,tbl_name in schema */ + u8 bUseLongDouble; /* Make use of long double */ int mxStrlen; /* Maximum string length */ int neverCorrupt; /* Database is always well-formed */ int szLookaside; /* Default lookaside buffer size */ |