diff UnitTests/Versions.cpp @ 194:0186ac92810c

fixes for Ubuntu 10.04
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Nov 2012 09:23:53 +0100
parents 2dece1526c06
children b45bc565d82a
line wrap: on
line diff
--- a/UnitTests/Versions.cpp	Tue Nov 13 14:02:28 2012 +0100
+++ b/UnitTests/Versions.cpp	Wed Nov 14 09:23:53 2012 +0100
@@ -34,7 +34,8 @@
   assert(strcmp(sqlite3_sourceid(), SQLITE_SOURCE_ID) == 0);
   assert(strcmp(sqlite3_libversion(), SQLITE_VERSION) == 0);
 
-  // Ensure that the SQLite version is above 3.7.0
+  // Ensure that the SQLite version is above 3.7.0.
+  // "sqlite3_create_function_v2" is not defined in previous versions.
   ASSERT_GE(SQLITE_VERSION_NUMBER, 3007000);
 }