MXS-1936 Make qc_mysqlembedded compatible with qc_sqlite
qc_mysqlembedded must also be updated to handle the new type QUERY_TYPE_DEALLOC_PREPARE. Some adjustements were also needed elsewhere.
This commit is contained in:
@ -140,6 +140,10 @@ char* get_types_as_string(uint32_t types)
|
||||
{
|
||||
s = append(s, "QUERY_TYPE_SHOW_TABLES", &len);
|
||||
}
|
||||
if (types & QUERY_TYPE_DEALLOC_PREPARE)
|
||||
{
|
||||
s = append(s, "QUERY_TYPE_DEALLOC_PREPARE", &len);
|
||||
}
|
||||
|
||||
if (!s)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user