ACCUMULO-1673 fetchColumnFamily only takes a Text, not a String or CharSequence.
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/3c4f4f06 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/3c4f4f06 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/3c4f4f06 Branch: refs/heads/master Commit: 3c4f4f065a099a01c8c27e367db00cd6ed19bc96 Parents: baf134c Author: Josh Elser <[email protected]> Authored: Thu Sep 19 13:17:31 2013 -0400 Committer: Josh Elser <[email protected]> Committed: Thu Sep 19 13:17:31 2013 -0400 ---------------------------------------------------------------------- docs/src/main/latex/accumulo_user_manual/chapters/table_design.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/3c4f4f06/docs/src/main/latex/accumulo_user_manual/chapters/table_design.tex ---------------------------------------------------------------------- diff --git a/docs/src/main/latex/accumulo_user_manual/chapters/table_design.tex b/docs/src/main/latex/accumulo_user_manual/chapters/table_design.tex index 1f6deb5..c7e0e61 100644 --- a/docs/src/main/latex/accumulo_user_manual/chapters/table_design.tex +++ b/docs/src/main/latex/accumulo_user_manual/chapters/table_design.tex @@ -164,7 +164,7 @@ for(Entry<Key,Value> entry : indexScanner) BatchScanner bscan = conn.createBatchScanner("table", auths, 10); bscan.setRanges(matchingRows); -bscan.fetchColumnFamily("attributes"); +bscan.fetchColumnFamily(new Text("attributes")); for(Entry<Key,Value> entry : bscan) System.out.println(entry.getValue());
