1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Add new requirements marks associated with the file format documentation.

No changes to code.

FossilOrigin-Name: 6d00bcca6ed1903fb17275752cab71c14392355b
This commit is contained in:
drh
2014-11-19 16:36:25 +00:00
parent 42a7b4bac9
commit 113762a284
6 changed files with 71 additions and 19 deletions

View File

@@ -3003,7 +3003,10 @@ int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
#ifndef SQLITE_OMIT_FLOATING_POINT
/* If the column has REAL affinity, it may currently be stored as an
** integer. Use OP_RealAffinity to make sure it is really real. */
** integer. Use OP_RealAffinity to make sure it is really real.
**
** EVIDENCE-OF: R-60985-57662 SQLite will convert the value back to
** floating point when extracting it from the record. */
if( pExpr->iColumn>=0
&& pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL
){