Move inserstream into the core
The filter is a part of 2.1 so it should be in the core. Added a note into the documentation about the experimental status.
This commit is contained in:
@ -6,6 +6,8 @@ leverages the speed advantage of LOAD DATA LOCAL INFILE over regular inserts
|
|||||||
while also reducing the overall network traffic by condensing the inserted
|
while also reducing the overall network traffic by condensing the inserted
|
||||||
values into CSV.
|
values into CSV.
|
||||||
|
|
||||||
|
**Note**: This is an experimental filter module
|
||||||
|
|
||||||
## Filter Parameters
|
## Filter Parameters
|
||||||
|
|
||||||
This filter has no parameters.
|
This filter has no parameters.
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
add_library(insertstream SHARED insertstream.c)
|
add_library(insertstream SHARED insertstream.c)
|
||||||
target_link_libraries(insertstream maxscale-common MySQLCommon)
|
target_link_libraries(insertstream maxscale-common MySQLCommon)
|
||||||
set_target_properties(insertstream PROPERTIES VERSION "1.0.0")
|
set_target_properties(insertstream PROPERTIES VERSION "1.0.0")
|
||||||
install_module(insertstream experimental)
|
install_module(insertstream core)
|
||||||
|
|||||||
Reference in New Issue
Block a user