ACCUMULO-802 fixed an import problem in RenameTableNamespace. Commented out problematic code for cloning tables until ACCUMULO-1565 is fixed
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f90e0fb8 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f90e0fb8 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f90e0fb8 Branch: refs/heads/ACCUMULO-802 Commit: f90e0fb8ebe199089dc6efbc14d0ec28a0026b42 Parents: fd5f11d Author: Sean Hickey <[email protected]> Authored: Tue Jul 23 08:52:44 2013 -0400 Committer: Christopher Tubbs <[email protected]> Committed: Thu Oct 31 21:24:36 2013 -0400 ---------------------------------------------------------------------- .../apache/accumulo/core/client/admin/TableOperationsImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/f90e0fb8/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperationsImpl.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperationsImpl.java b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperationsImpl.java index ab8ec7a..3773b2a 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperationsImpl.java +++ b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperationsImpl.java @@ -702,7 +702,8 @@ public class TableOperationsImpl extends TableOperationsHelper { if (propertiesToSet == null) propertiesToSet = Collections.emptyMap(); - HashSet<String> excludeProps = getUniqueNamespaceProperties(namespace, srcTableName); + // TODO ACCUMULO-1565 needs to be fixed before the commented-out code below will work. + HashSet<String> excludeProps = new HashSet<String>();//getUniqueNamespaceProperties(namespace, srcTableName); for (String p : propertiesToExclude) { excludeProps.add(p); }
