When batched queries are done through readwritesplit, it will now handle them one by one. This allows batched queries to be used with readwritesplit but it does impose a performance penalty when compared to direct execution on the backend.
5 lines
330 B
CMake
5 lines
330 B
CMake
add_library(readwritesplit SHARED readwritesplit.c rwsplit_mysql.c rwsplit_route_stmt.c rwsplit_select_backends.c rwsplit_session_cmd.c rwsplit_tmp_table_multi.c)
|
|
target_link_libraries(readwritesplit maxscale-common MySQLCommon)
|
|
set_target_properties(readwritesplit PROPERTIES VERSION "1.0.2")
|
|
install_module(readwritesplit core)
|