From a251d2c612a9ddc354144a2d0fe21cc2cc47086e Mon Sep 17 00:00:00 2001 From: Ashish Singhi Date: Wed, 3 Dec 2014 20:41:19 +0530 Subject: [PATCH] HBASE-12624 Remove rename_snapshot.rb from code as there is no equivalent renameSnapshot api in Admin class --- hbase-shell/src/main/ruby/hbase/admin.rb | 6 ---- hbase-shell/src/main/ruby/shell.rb | 1 - .../main/ruby/shell/commands/rename_snapshot.rb | 37 ---------------------- 3 files changed, 44 deletions(-) delete mode 100644 hbase-shell/src/main/ruby/shell/commands/rename_snapshot.rb diff --git a/hbase-shell/src/main/ruby/hbase/admin.rb b/hbase-shell/src/main/ruby/hbase/admin.rb index 9b65cc3..2c8828e 100644 --- a/hbase-shell/src/main/ruby/hbase/admin.rb +++ b/hbase-shell/src/main/ruby/hbase/admin.rb @@ -772,12 +772,6 @@ module Hbase end #---------------------------------------------------------------------------------------------- - # Rename specified snapshot - def rename_snapshot(old_snapshot_name, new_snapshot_name) - @admin.renameSnapshot(old_snapshot_name.to_java_bytes, new_snapshot_name.to_java_bytes) - end - - #---------------------------------------------------------------------------------------------- # Delete specified snapshot def delete_snapshot(snapshot_name) @admin.deleteSnapshot(snapshot_name.to_java_bytes) diff --git a/hbase-shell/src/main/ruby/shell.rb b/hbase-shell/src/main/ruby/shell.rb index 082a7f0..3222bee 100644 --- a/hbase-shell/src/main/ruby/shell.rb +++ b/hbase-shell/src/main/ruby/shell.rb @@ -359,7 +359,6 @@ Shell.load_command_group( snapshot clone_snapshot restore_snapshot - rename_snapshot delete_snapshot delete_all_snapshot list_snapshots diff --git a/hbase-shell/src/main/ruby/shell/commands/rename_snapshot.rb b/hbase-shell/src/main/ruby/shell/commands/rename_snapshot.rb deleted file mode 100644 index ac9e23c..0000000 --- a/hbase-shell/src/main/ruby/shell/commands/rename_snapshot.rb +++ /dev/null @@ -1,37 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -module Shell - module Commands - class RenameSnapshot < Command - def help - return <<-EOF -Rename a specified snapshot. Examples: - - hbase> rename_snapshot 'oldSnapshotName' 'newSnapshotName' -EOF - end - - def command(old_snapshot_name, new_snapshot_name) - format_simple_command do - admin.rename_snapshot(old_snapshot_name, new_snapshot_name) - end - end - end - end -end -- 1.9.2.msysgit.0