ASSERT_NO_THROW({
// Recreate Memfile_LeaseMgr.
LeaseMgrFactory::destroy();
- ASSERT_NO_THROW(LeaseMgrFactory::create(dbaccess));
+ LeaseMgrFactory::create(dbaccess);
lmptr_ = &(LeaseMgrFactory::instance());
});
ASSERT_NO_THROW({
// Recreate Memfile_LeaseMgr.
LeaseMgrFactory::destroy();
- ASSERT_NO_THROW(LeaseMgrFactory::create(dbaccess));
+ LeaseMgrFactory::create(dbaccess);
lmptr_ = &(LeaseMgrFactory::instance());
});
// tcp_user_timeout parameter is a PostgreSQL 12+ feature.
#ifdef HAVE_PGSQL_TCP_USER_TIMEOUT
oss << " tcp_user_timeout = " << tcp_user_timeout * 1000;
+ static_cast<void>(logging);
#else
if (logging) {
DB_LOG_WARN(PGSQL_TCP_USER_TIMEOUT_UNSUPPORTED).arg();