The new 3.6.20 release generates warnings (under MSVC) about loss of
data in type size conversions relating to the new ynVar type
(introduced in 24a4d520d5); this is because, contrary to all
documentation and other uses of the type, it is declared as:
#if SQLITE_MAX_VARIABLE_NUMBER<=32767
typedef i64 ynVar;
#else
typedef int ynVar;
#endif
The intent here is clearly to use i16, not i64.
- John Brooks
_______________________________________________
sqlite-users mailing list
sqlite-users@...
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users