diff options
author | Jochen Topf <jochen@topf.org> | 2015-03-06 11:29:03 +0100 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2015-03-06 11:29:03 +0100 |
commit | 75a1deefaea0d94c2ef024bf272c6076447fa444 (patch) | |
tree | 2a13cbef1bda3d022732b34cfb4f6029ebf88195 /sources | |
parent | 1030f60092da4ccc7939d6f5333b740b46642cd9 (diff) | |
download | taginfo-75a1deefaea0d94c2ef024bf272c6076447fa444.tar taginfo-75a1deefaea0d94c2ef024bf272c6076447fa444.tar.gz |
Remove deprecated PRAGMA count_changes = OFF;
Diffstat (limited to 'sources')
-rw-r--r-- | sources/db/post.sql | 1 | ||||
-rw-r--r-- | sources/db/post_indexes.sql | 1 | ||||
-rw-r--r-- | sources/db/post_similar_keys.sql | 1 | ||||
-rw-r--r-- | sources/master/search.sql | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/sources/db/post.sql b/sources/db/post.sql index 07f5ca0..c321377 100644 --- a/sources/db/post.sql +++ b/sources/db/post.sql @@ -8,7 +8,6 @@ PRAGMA journal_mode = OFF; PRAGMA synchronous = OFF; -PRAGMA count_changes = OFF; PRAGMA temp_store = MEMORY; PRAGMA cache_size = 5000000; diff --git a/sources/db/post_indexes.sql b/sources/db/post_indexes.sql index 768b7f3..3f53ea5 100644 --- a/sources/db/post_indexes.sql +++ b/sources/db/post_indexes.sql @@ -8,7 +8,6 @@ PRAGMA journal_mode = OFF; PRAGMA synchronous = OFF; -PRAGMA count_changes = OFF; PRAGMA temp_store = MEMORY; PRAGMA cache_size = 5000000; diff --git a/sources/db/post_similar_keys.sql b/sources/db/post_similar_keys.sql index 8ab9ecc..03b000b 100644 --- a/sources/db/post_similar_keys.sql +++ b/sources/db/post_similar_keys.sql @@ -8,7 +8,6 @@ PRAGMA journal_mode = OFF; PRAGMA synchronous = OFF; -PRAGMA count_changes = OFF; PRAGMA temp_store = MEMORY; PRAGMA cache_size = 5000000; diff --git a/sources/master/search.sql b/sources/master/search.sql index 9792eba..7cc8643 100644 --- a/sources/master/search.sql +++ b/sources/master/search.sql @@ -10,7 +10,6 @@ PRAGMA journal_mode = OFF; PRAGMA synchronous = OFF; -PRAGMA count_changes = OFF; PRAGMA temp_store = MEMORY; PRAGMA cache_size = 5000000; |