Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 06EB3105F7 for ; Wed, 31 Jul 2013 01:59:24 +0000 (UTC) Received: (qmail 98729 invoked by uid 500); 31 Jul 2013 01:59:22 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 98286 invoked by uid 500); 31 Jul 2013 01:59:22 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 97682 invoked by uid 99); 31 Jul 2013 01:59:21 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Jul 2013 01:59:21 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6D5AB830C1B; Wed, 31 Jul 2013 01:59:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Wed, 31 Jul 2013 01:59:34 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [14/50] [abbrv] git commit: ACCUMULO-1429 use the specified tablename ACCUMULO-1429 use the specified tablename git-svn-id: https://svn.apache.org/repos/asf/accumulo/branches/1.4@1483954 13f79535-47bb-0310-9956-ffa450edef68 Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/a3d5dc62 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/a3d5dc62 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/a3d5dc62 Branch: refs/heads/1.5.1-SNAPSHOT Commit: a3d5dc629347799f177ed578c85318e2c765257f Parents: 55a97ce Author: Eric C. Newton Authored: Fri May 17 19:16:01 2013 +0000 Committer: Eric C. Newton Committed: Fri May 17 19:16:01 2013 +0000 ---------------------------------------------------------------------- .../org/apache/accumulo/core/util/shell/commands/ScanCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/a3d5dc62/src/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java ---------------------------------------------------------------------- diff --git a/src/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java b/src/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java index ca1ea83..275a07f 100644 --- a/src/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java +++ b/src/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java @@ -108,7 +108,7 @@ public class ScanCommand extends Command { } protected void addScanIterators(Shell shellState, Scanner scanner, String tableName) { - List tableScanIterators = shellState.scanIteratorOptions.get(shellState.getTableName()); + List tableScanIterators = shellState.scanIteratorOptions.get(tableName); if (tableScanIterators == null) { Shell.log.debug("Found no scan iterators to set"); return;