1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove an unreachable branch from the sqlite3_value_numeric_type() interface.

FossilOrigin-Name: 5350229b52b18a4961858a30538c5c75e5bd3048
This commit is contained in:
drh
2014-07-26 20:12:56 +00:00
parent 975b4c6e8b
commit e6bc1ef68f
3 changed files with 8 additions and 8 deletions

View File

@@ -292,7 +292,7 @@ int sqlite3_value_numeric_type(sqlite3_value *pVal){
int eType = sqlite3_value_type(pVal);
if( eType==SQLITE_TEXT ){
Mem *pMem = (Mem*)pVal;
ApplyNumericAffinity(pMem);
applyNumericAffinity(pMem);
eType = sqlite3_value_type(pVal);
}
return eType;