Added the following code at the end of `updateMessageSearchResult`, and verified that a non zero count if found after calling the function.
```
std::string query =
"SELECT * FROM message_search";
comm::SQLiteStatementWrapper preparedSQL1(
db,
query,
"Failed to fetch from search");
int count = 0;
for (int stepResult = sqlite3_step(preparedSQL1); stepResult == SQLITE_ROW;
stepResult = sqlite3_step(preparedSQL1)) {
count++;
}
Logger::log("message search row count: "+ std::to_string(count));
```