
KILL commands are now sent to the backends in an asynchronous manner. As the LocalClient class is used to connect to the servers, this will cause an extra connection to be created on top of the original connections created by the session. If the user does not have the permissions to execute the KILL, the error message is currently lost. This could be solved by adding a "result handler" into the LocalClient class which is called with the result.
9 lines
297 B
CMake
9 lines
297 B
CMake
add_library(MySQLCommon SHARED mysql_common.cc mariadb_client.cc)
|
|
target_link_libraries(MySQLCommon maxscale-common)
|
|
set_target_properties(MySQLCommon PROPERTIES VERSION "2.0.0")
|
|
install_module(MySQLCommon core)
|
|
|
|
add_subdirectory(MySQLBackend)
|
|
add_subdirectory(MySQLClient)
|
|
add_subdirectory(test)
|