You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafodion.apache.org by "Alice Chen (JIRA)" <ji...@apache.org> on 2015/07/22 20:17:45 UTC

[jira] [Created] (TRAFODION-668) LP Bug: 1376549 - Following drop schema cascade histogram objects remain in HBase

Alice Chen created TRAFODION-668:
------------------------------------

             Summary: LP Bug: 1376549 - Following drop schema cascade histogram objects remain in HBase
                 Key: TRAFODION-668
                 URL: https://issues.apache.org/jira/browse/TRAFODION-668
             Project: Apache Trafodion
          Issue Type: Bug
          Components: sql-cmp
            Reporter: Julie Thai
            Assignee: Anoop Sharma
            Priority: Critical


Following a drop-schema-cascade, histogram and histogram_intervals still exist in Hbase.

To reproduce:
drop schema AAA cascade;
create schema AAA;
set schema AAA;
create table AAA.f00(a int not null primary key, b int);
insert into AAA.f00 values (1,1), (2,2), (3,3);
update statistics for table AAA.f00 on every column;
drop table AAA.f00;
drop schema AAA cascade;

Do a 'list' in hbase UI:
TABLE                                                                           
TRAFODION.AAA.SB_HISTOGRAMS                                                     
TRAFODION.AAA.SB_HISTOGRAM_INTERVALS



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)