1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-08 19:42:06 +03:00

Fix typos in compile and run-time tests of the sqlite library version number in rtree.c.

FossilOrigin-Name: f58d57017199421167dae8ebc67db2f19be45082
This commit is contained in:
dan
2013-11-11 19:56:35 +00:00
parent a9f5815b67
commit 14ec33f73b
3 changed files with 9 additions and 9 deletions

View File

@ -1360,8 +1360,8 @@ static int rtreeFilter(
** support estimatedRows. In that case this function is a no-op.
*/
static void setEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){
#if SQLITE_VERSION_NUMBER>=308002
if( sqlite3_libversion_number()>=300802 ){
#if SQLITE_VERSION_NUMBER>=3008002
if( sqlite3_libversion_number()>=3008002 ){
pIdxInfo->estimatedRows = nRow;
}
#endif