Alex Newman created HBASE-6431:
----------------------------------

             Summary: Some FilterList Constructors break addFilter
                 Key: HBASE-6431
                 URL: https://issues.apache.org/jira/browse/HBASE-6431
             Project: HBase
          Issue Type: Bug
            Reporter: Alex Newman
            Assignee: Alex Newman


Some of the constructors for FilterList set the internal list of filters to 
list types which don't support the add operation. As a result 

FilterList(final List<Filter> rowFilters)
FilterList(final Filter... rowFilters)
FilterList(final Operator operator, final List<Filter> rowFilters)
FilterList(final Operator operator, final Filter... rowFilters)

may init private List<Filter> filters = new ArrayList<Filter>(); incorrectly.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to