[ https://issues.apache.org/jira/browse/ACCUMULO-1661?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13879021#comment-13879021
]
ASF subversion and git services commented on ACCUMULO-1661:
-----------------------------------------------------------
Commit 13eb19c2b92180bc4752d75dd74b76d036eb38e2 in branch refs/heads/master from [~vickyuec]
[ https://git-wip-us.apache.org/repos/asf?p=accumulo.git;h=13eb19c ]
ACCUMULO-1661 Handle empty column family correctly for AccumuloInputFormat
Signed-off-by: Eric Newton <eric.newton@gmail.com>
> 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.4.3, 1.5.0
> Reporter: Billie Rinaldi
> Assignee: Vikram Srivastava
> Fix For: 1.5.1, 1.6.0
>
> Attachments: ACCUMULO-1661.1.5.1-SNAPSHOT.patch.txt, ACCUMULO-1661.v1.patch.txt,
ACCUMULO-1661.v2.patch.txt
>
>
> 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 was sent by Atlassian JIRA
(v6.1.5#6160)
|