Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-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 05CAE1141D for ; Mon, 18 Aug 2014 21:51:24 +0000 (UTC) Received: (qmail 57878 invoked by uid 500); 18 Aug 2014 21:51:23 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 57716 invoked by uid 500); 18 Aug 2014 21:51:23 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 57482 invoked by uid 99); 18 Aug 2014 21:51:23 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Aug 2014 21:51:23 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 57A7F9C6710; Mon, 18 Aug 2014 21:51:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: apurtell@apache.org To: commits@hbase.apache.org Date: Mon, 18 Aug 2014 21:51:26 -0000 Message-Id: In-Reply-To: <2557bd9eec2544a2904ded9d625ff5f7@git.apache.org> References: <2557bd9eec2544a2904ded9d625ff5f7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/4] git commit: HBASE-11754 [Shell] Record table property SPLITS_FILE in descriptor (chendihao) HBASE-11754 [Shell] Record table property SPLITS_FILE in descriptor (chendihao) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/cbd21dd9 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/cbd21dd9 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/cbd21dd9 Branch: refs/heads/branch-1 Commit: cbd21dd9c18d26eccfd971bebdb9a9c459b8f1b9 Parents: 137fea8 Author: Andrew Purtell Authored: Mon Aug 18 14:50:52 2014 -0700 Committer: Andrew Purtell Committed: Mon Aug 18 14:50:52 2014 -0700 ---------------------------------------------------------------------- hbase-shell/src/main/ruby/hbase/admin.rb | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/cbd21dd9/hbase-shell/src/main/ruby/hbase/admin.rb ---------------------------------------------------------------------- diff --git a/hbase-shell/src/main/ruby/hbase/admin.rb b/hbase-shell/src/main/ruby/hbase/admin.rb index 532f073..d74d229 100644 --- a/hbase-shell/src/main/ruby/hbase/admin.rb +++ b/hbase-shell/src/main/ruby/hbase/admin.rb @@ -242,6 +242,7 @@ module Hbase File.foreach(splits_file) do |line| arg[SPLITS].push(line.strip()) end + htd.setValue(SPLITS_FILE, arg[SPLITS_FILE]) end if arg.has_key?(SPLITS)