comparison SQLite/Plugins/SQLiteIndex.cpp @ 403:91124cc8a8c7 db-protobuf

database plugins are informed about the identifier tags
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 11 Apr 2023 11:10:19 +0200
parents 19bd3ee1f0b3
children ecd0b719cff5
comparison
equal deleted inserted replaced
402:82921a29349a 403:91124cc8a8c7
83 83
84 return new Factory(path_, fast_); 84 return new Factory(path_, fast_);
85 } 85 }
86 86
87 87
88 void SQLiteIndex::ConfigureDatabase(DatabaseManager& manager) 88 void SQLiteIndex::ConfigureDatabase(DatabaseManager& manager,
89 bool hasIdentifierTags,
90 const std::list<IdentifierTag>& identifierTags)
89 { 91 {
90 uint32_t expectedVersion = 6; 92 uint32_t expectedVersion = 6;
91 93
92 if (GetContext()) // "GetContext()" can possibly be NULL in the unit tests 94 if (GetContext()) // "GetContext()" can possibly be NULL in the unit tests
93 { 95 {