comparison Odbc/Plugins/OdbcIndex.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 3d6886f3e5b3
children ecd0b719cff5
comparison
equal deleted inserted replaced
402:82921a29349a 403:91124cc8a8c7
160 { 160 {
161 return OdbcDatabase::CreateDatabaseFactory(maxConnectionRetries_, connectionRetryInterval_, connectionString_, true); 161 return OdbcDatabase::CreateDatabaseFactory(maxConnectionRetries_, connectionRetryInterval_, connectionString_, true);
162 } 162 }
163 163
164 164
165 void OdbcIndex::ConfigureDatabase(DatabaseManager& manager) 165 void OdbcIndex::ConfigureDatabase(DatabaseManager& manager,
166 bool hasIdentifierTags,
167 const std::list<IdentifierTag>& identifierTags)
166 { 168 {
167 uint32_t expectedVersion = 6; 169 uint32_t expectedVersion = 6;
168 170
169 if (GetContext()) // "GetContext()" can possibly be NULL in the unit tests 171 if (GetContext()) // "GetContext()" can possibly be NULL in the unit tests
170 { 172 {