You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Taewoo Kim (JIRA)" <ji...@apache.org> on 2015/09/24 02:32:05 UTC

[jira] [Created] (ASTERIXDB-1110) Cannot drop a dataverse when there was an exception regarding an index operation

Taewoo Kim created ASTERIXDB-1110:
-------------------------------------

             Summary: Cannot drop a dataverse when there was an exception regarding an index operation
                 Key: ASTERIXDB-1110
                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-1110
             Project: Apache AsterixDB
          Issue Type: Bug
            Reporter: Taewoo Kim


Cannot drop a dataverse after an exception is thrown from an index.

#1. Copy and paste the following code in the web interface. Execute the code. It will throw an exception at this moment. 
drop dataverse test if exists;
create dataverse test;
use dataverse test;

create type FooType as open {
	a: int64
}

create dataset OpenFoo(FooType) primary key a;

create index btree_idx on OpenFoo(b:double) type btree enforced;

insert into dataset test.OpenFoo (
	{"a":7, "b":3.14}
);

for $o in dataset OpenFoo return $o;

delete $o from dataset OpenFoo where $o.a = 7;

for $o in dataset OpenFoo return $o;

insert into dataset OpenFoo (
	{"a":7, "b":3.14}
);


#2. Now, try to delete the dataverse by issuing the following command. It will throw this exception - Cannot remove index while it is open. [HyracksDataException]

drop dataverse test;




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