You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if convert.is_some() && !vec!("xml-to-text","gml-to-ewkb").contains(&convert.unwrap()){
140
142
panic!("Option 'convert' contains invalid value {}", convert.unwrap());
141
143
}
142
-
iffilter.is_some(){
144
+
ifinclude.is_some() || exclude.is_some(){
143
145
if convert.is_some(){
144
-
panic!("Option 'filt' and 'conv' cannot be used together on a single column");
146
+
panic!("Filtering (incl/excl) and 'conv' cannot be used together on a single column");
145
147
}
146
148
if find.is_some(){
147
-
eprintln!("Notice: when using a filter and find/replace on a single column, the filter is applied before replacements");
149
+
eprintln!("Notice: when using filtering (incl/excl) and find/replace on a single column, the filter is checked before replacements");
148
150
}
149
151
if consol.is_some(){
150
-
eprintln!("Notice: when using a filter and consolidation on a single column, the filter is applied to each phase of consolidation separately");
152
+
eprintln!("Notice: when using filtering (incl/excl) and consolidation on a single column, the filter is checked at each phase of consolidation separately");
0 commit comments