Skip to content

Commit

Permalink
Accommodate database enum renames.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Mar 16, 2024
1 parent 21afcd5 commit bbbf336
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions console/executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ const std::unordered_map<database::event_t, std::string> executor::events_
{ database::event_t::flush_body, "flush_body" },
{ database::event_t::backup_table, "backup_table" },
{ database::event_t::copy_header, "copy_header" },
{ database::event_t::archive_index, "archive_index" },
{ database::event_t::archive_snapshot, "archive_snapshot" },

{ database::event_t::restore_table, "restore_table" },
{ database::event_t::recover_index, "recover_index" }
{ database::event_t::recover_snapshot, "recover_snapshot" }
};
const std::unordered_map<database::table_t, std::string> executor::tables_
{
Expand Down

0 comments on commit bbbf336

Please sign in to comment.