MXS-2508 Fix qc_mysqlembedded

It appears that the function db_my_assert may be used but not
built into the library.

With 10.4.12 there seem to occasionally be superfluous empty
table names.
This commit is contained in:
Johan Wikman 2020-03-03 11:04:54 +02:00
parent 4a5293ebba
commit f66d7ca838

View File

@ -77,6 +77,16 @@
#define WF_SUPPORTED
#endif
extern "C"
{
my_bool _db_my_assert(const char *file, int line, const char *msg)
{
return true;
}
}
#if defined (CTE_SUPPORTED)
// We need to be able to access private data of With_element that has no
// public access methods. So, we use this very questionable method of