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
This allows filters to be evaluated for non-existing elements. Most notably you can now exclude rows based on non-existing elements with either "incl: ." or "excl: ^$".
fatalerr!("Error: filtering (incl/excl) and 'conv' cannot be used together on a single column");
325
325
}
326
326
if find.is_some() && !settings.hush_notice{
327
-
eprintln!("Notice: when using filtering (incl/excl) and find/replace on a single column, the filter is checked before replacements");
327
+
eprintln!("Notice: when using filtering (incl/excl) and find/replace on a single column, the filter is checked after replacements");
328
328
}
329
329
if aggr.is_some() && !settings.hush_notice{
330
-
eprintln!("Notice: when using filtering (incl/excl) and aggregation on a single column, the filter is checked at each step of aggregation separately");
330
+
eprintln!("Notice: when using filtering (incl/excl) and aggregation on a single column, the filter is checked after aggregation");
331
331
}
332
332
}
333
333
if bbox.is_some() && (convert.is_none() || convert.unwrap() != "gml-to-ewkb") && !settings.hush_warning{
@@ -561,18 +561,6 @@ fn main() {
561
561
if table.columns[i].value.borrow().is_empty() && !settings.hush_warning{
562
562
eprintln!("Warning: column {} requested attribute {} not found", table.columns[i].name, request);
563
563
}
564
-
ifletSome(re) = &table.columns[i].include{
565
-
if !re.is_match(&table.columns[i].value.borrow()){
0 commit comments