You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Billie Rinaldi (JIRA)" <ji...@apache.org> on 2013/08/22 00:25:52 UTC

[jira] [Created] (ACCUMULO-1661) AccumuloInputFormat cannot fetch empty column family

Billie Rinaldi created ACCUMULO-1661:
----------------------------------------

             Summary: AccumuloInputFormat cannot fetch empty column family
                 Key: ACCUMULO-1661
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-1661
             Project: Accumulo
          Issue Type: Bug
          Components: client
    Affects Versions: 1.5.0, 1.4.3
            Reporter: Billie Rinaldi


The following fails:
{code:java}
Job job = new Job();
HashSet<Pair<Text,Text>> cols = new HashSet<Pair<Text,Text>>();
cols.add(new Pair<Text,Text>(new Text(""), null));
AccumuloInputFormat.fetchColumns(job, cols);
Set<Pair<Text,Text>> setCols = AccumuloInputFormat.getFetchedColumns(job);
assertEquals(cols.size(), setCols.size());
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira