Releases: ogobrecht/plex
Releases · ogobrecht/plex
Feature & Bugfix Release
- New: All like/not like parameters are now translated internally with the escape character set to backslash like so
... like 'YourExpression' escape '\'
- Fixed: binary data type columns (raw, long_raw, blob, bfile) should no longer break the export data to CSV functionality
Feature Release
Change two parameters of function BackApp
-
Old: p_object_filter_regex
- New: p_object_name_like - a comma separated list of like expressions to filter the objects - example:
'EMP%,DEPT%'
will be translated to:where ... and (object_name like 'EMP%' or object_name like 'DEPT%')
- New: p_object_name_not_like - a comma separated list of not like expressions to filter the objects - example:
'EMP%,DEPT%'
will be translated to:where ... and (object_name not like 'EMP%' and object_name not like 'DEPT%')
- New: p_object_name_like - a comma separated list of like expressions to filter the objects - example:
-
Old: p_data_table_filter_regex
- New: p_data_table_name_like - a comma separated list of like expressions to filter the tables - example:
'EMP%,DEPT%'
will be translated to:where ... and (table_name like 'EMP%' or table_name like 'DEPT%')
- New: p_data_table_name_not_like - a comma separated list of not like expressions to filter the tables - example:
'EMP%,DEPT%'
will be translated to:where ... and (table_name not like 'EMP%' and table_name not like 'DEPT%')
- New: p_data_table_name_like - a comma separated list of like expressions to filter the tables - example:
Regex filter were simply too complex to use...
First public release
v1.0.0 cleanup package.json