Github user milleruntime commented on a diff in the pull request: https://github.com/apache/accumulo/pull/122#discussion_r69723256 --- Diff: core/src/main/java/org/apache/accumulo/core/iterators/user/ColumnAgeOffFilter.java --- @@ -43,6 +43,9 @@ public TTLSet(Map<String,String> objectStrings) { for (Entry<String,String> entry : objectStrings.entrySet()) { String column = entry.getKey(); String ttl = entry.getValue(); + // skip the negate option, it will cause an exception to be thrown + if (column.equals(NEGATE)) --- End diff -- Yeah sure thing
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---