Fossil SCM
since fossil requires SQLite 3.33 now, adapt sqlcompattest accordingly
Commit
c48ef7254dd5edc7ca3fd42000d2a576334379c076e74f4973f8297eb7b6b24c
Parent
ef06d8a5ff97683…
1 file changed
+2
-2
+2
-2
| --- src/sqlcompattest.c | ||
| +++ src/sqlcompattest.c | ||
| @@ -48,12 +48,12 @@ | ||
| 48 | 48 | "ENABLE_JSON1", /* Required for the check-in locking protocol */ |
| 49 | 49 | "ENABLE_DBSTAT_VTAB", /* Required by /repo-tabsize page */ |
| 50 | 50 | }; |
| 51 | 51 | |
| 52 | 52 | /* Check minimum SQLite version number */ |
| 53 | - if( sqlite3_libversion_number()<3028000 ){ | |
| 54 | - printf("found SQLite version %s but need 3.28.0 or later\n", | |
| 53 | + if( sqlite3_libversion_number()<3033000 ){ | |
| 54 | + printf("found SQLite version %s but need 3.33.0 or later\n", | |
| 55 | 55 | sqlite3_libversion()); |
| 56 | 56 | return 1; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | for(i=0; i<sizeof(zRequiredOpts)/sizeof(zRequiredOpts[0]); i++){ |
| 60 | 60 |
| --- src/sqlcompattest.c | |
| +++ src/sqlcompattest.c | |
| @@ -48,12 +48,12 @@ | |
| 48 | "ENABLE_JSON1", /* Required for the check-in locking protocol */ |
| 49 | "ENABLE_DBSTAT_VTAB", /* Required by /repo-tabsize page */ |
| 50 | }; |
| 51 | |
| 52 | /* Check minimum SQLite version number */ |
| 53 | if( sqlite3_libversion_number()<3028000 ){ |
| 54 | printf("found SQLite version %s but need 3.28.0 or later\n", |
| 55 | sqlite3_libversion()); |
| 56 | return 1; |
| 57 | } |
| 58 | |
| 59 | for(i=0; i<sizeof(zRequiredOpts)/sizeof(zRequiredOpts[0]); i++){ |
| 60 |
| --- src/sqlcompattest.c | |
| +++ src/sqlcompattest.c | |
| @@ -48,12 +48,12 @@ | |
| 48 | "ENABLE_JSON1", /* Required for the check-in locking protocol */ |
| 49 | "ENABLE_DBSTAT_VTAB", /* Required by /repo-tabsize page */ |
| 50 | }; |
| 51 | |
| 52 | /* Check minimum SQLite version number */ |
| 53 | if( sqlite3_libversion_number()<3033000 ){ |
| 54 | printf("found SQLite version %s but need 3.33.0 or later\n", |
| 55 | sqlite3_libversion()); |
| 56 | return 1; |
| 57 | } |
| 58 | |
| 59 | for(i=0; i<sizeof(zRequiredOpts)/sizeof(zRequiredOpts[0]); i++){ |
| 60 |