Amend HBASE-6276. Misapplied patch

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1354274 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Kyle Purtell 2012-06-26 22:27:22 +00:00
parent c80b254756
commit f4165e27ce
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ public class TestClassLoading {
File jarFile = buildCoprocessorJar(cpName3);
// create a table that references the jar
HTableDescriptor htd = new HTableDescriptor(tableName);
HTableDescriptor htd = new HTableDescriptor(cpName3);
htd.addFamily(new HColumnDescriptor("test"));
htd.setValue("COPROCESSOR$1", jarFile.toString() + "|" + cpName3 + "|" +
Coprocessor.PRIORITY_USER);