comparison PostgreSQL/Plugins/PostgreSQLIndex.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 7b3acfa95bd8
children a7f0f27fe33c d700c8f9fc24
comparison
equal deleted inserted replaced
402:82921a29349a 403:91124cc8a8c7
59 { 59 {
60 return PostgreSQLDatabase::CreateDatabaseFactory(parameters_); 60 return PostgreSQLDatabase::CreateDatabaseFactory(parameters_);
61 } 61 }
62 62
63 63
64 void PostgreSQLIndex::ConfigureDatabase(DatabaseManager& manager) 64 void PostgreSQLIndex::ConfigureDatabase(DatabaseManager& manager,
65 bool hasIdentifierTags,
66 const std::list<IdentifierTag>& identifierTags)
65 { 67 {
66 uint32_t expectedVersion = 6; 68 uint32_t expectedVersion = 6;
67 69
68 if (GetContext()) // "GetContext()" can possibly be NULL in the unit tests 70 if (GetContext()) // "GetContext()" can possibly be NULL in the unit tests
69 { 71 {