[
https://issues.apache.org/jira/browse/HBASE-11543?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Mingtao Zhang updated HBASE-11543:
----------------------------------
Description:
TableName[] tableNames = admin.listTableNames();
for (TableName tableName : tableNames) {
admin.disableTable(tableName);
admin.deleteTable(tableName);
}
After the above, some systemspace table is messed up as the shell client won't
function well anymore.
Same codes working fine in 0.98.3-hadoop1.
was:
TableName[] tableNames = admin.listTableNames();
for (TableName tableName : tableNames) {
admin.disableTable(tableName);
admin.deleteTable(tableName);
}
After the above, some systemspace table is messed up as the shell client won't
function well anymore.
Same codes working fine in 0.98.3-hadoop1.
> hbase-client 0.95.2-hadoop2 admin.listTableNames() returns tables from not
> only userspace
> -----------------------------------------------------------------------------------------
>
> Key: HBASE-11543
> URL: https://issues.apache.org/jira/browse/HBASE-11543
> Project: HBase
> Issue Type: Bug
> Components: Client
> Affects Versions: 0.95.2
> Environment: Client running on windows 7. Standalone HBase running on
> Linux. Shouldn't matter as same setup working under 0.98.3-hadoop1
> Reporter: Mingtao Zhang
> Priority: Minor
>
> TableName[] tableNames = admin.listTableNames();
> for (TableName tableName : tableNames) {
> admin.disableTable(tableName);
> admin.deleteTable(tableName);
> }
> After the above, some systemspace table is messed up as the shell client
> won't function well anymore.
> Same codes working fine in 0.98.3-hadoop1.
--
This message was sent by Atlassian JIRA
(v6.2#6252)