Blame SOURCES/evolution-data-server-3.28.2-sqlite-deterministic.patch

0357b3
diff -up evolution-data-server-3.28.3/src/calendar/libedata-cal/e-cal-cache.c.sqlite-deterministic evolution-data-server-3.28.3/src/calendar/libedata-cal/e-cal-cache.c
0357b3
--- evolution-data-server-3.28.3/src/calendar/libedata-cal/e-cal-cache.c.sqlite-deterministic	2018-06-18 10:48:43.000000000 +0200
0357b3
+++ evolution-data-server-3.28.3/src/calendar/libedata-cal/e-cal-cache.c	2018-06-18 12:24:16.018228889 +0200
0357b3
@@ -1730,14 +1730,14 @@ ecc_init_sqlite_functions (ECalCache *ca
0357b3
 
0357b3
 	/* check_sexp(sexp_id, icalstring) */
0357b3
 	ret = sqlite3_create_function (sqlitedb,
0357b3
-		"check_sexp", 2, SQLITE_UTF8 | SQLITE_DETERMINISTIC,
0357b3
+		"check_sexp", 2, SQLITE_UTF8 /*| SQLITE_DETERMINISTIC*/,
0357b3
 		cal_cache, ecc_check_sexp_func,
0357b3
 		NULL, NULL);
0357b3
 
0357b3
 	if (ret == SQLITE_OK) {
0357b3
 		/* negate(x) */
0357b3
 		ret = sqlite3_create_function (sqlitedb,
0357b3
-			"negate", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC,
0357b3
+			"negate", 1, SQLITE_UTF8 /*| SQLITE_DETERMINISTIC*/,
0357b3
 			NULL, ecc_negate_func,
0357b3
 			NULL, NULL);
0357b3
 	}