From 07e407945bc3824296a10e52871cb02981e3aae2 Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Thu, 27 Sep 2018 12:56:36 +0300 Subject: [PATCH] Change ss_dassert -> mxb_assert Caused by merge from 2.2. --- query_classifier/qc_sqlite/qc_sqlite.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/query_classifier/qc_sqlite/qc_sqlite.cc b/query_classifier/qc_sqlite/qc_sqlite.cc index c3106c521..7b4591990 100644 --- a/query_classifier/qc_sqlite/qc_sqlite.cc +++ b/query_classifier/qc_sqlite/qc_sqlite.cc @@ -3034,7 +3034,7 @@ public: void set_type_mask(uint32_t type_mask) { - ss_dassert(this_thread.initialized); + mxb_assert(this_thread.initialized); m_type_mask = type_mask; } @@ -3734,7 +3734,7 @@ extern void maxscale_update_function_info(const char* name, const Expr* pExpr) extern void maxscale_set_type_mask(unsigned int type_mask) { QcSqliteInfo* pInfo = this_thread.pInfo; - ss_dassert(pInfo); + mxb_assert(pInfo); pInfo->set_type_mask(type_mask); }