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:
Markus Mäkelä 2017-02-01 14:55:33 +02:00
parent eeb3cc436e
commit 3a447607a7
2 changed files with 3 additions and 1 deletions

View File

@ -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
values into CSV.
**Note**: This is an experimental filter module
## Filter Parameters
This filter has no parameters.

View File

@ -1,4 +1,4 @@
add_library(insertstream SHARED insertstream.c)
target_link_libraries(insertstream maxscale-common MySQLCommon)
set_target_properties(insertstream PROPERTIES VERSION "1.0.0")
install_module(insertstream experimental)
install_module(insertstream core)