dibyendumajumdar / simpledbm

SimpleDBM is an Open Source Multi-Threaded Embeddable Transactional Database Engine in Java.
55 stars 12 forks source link

Table/Index Delete Functionality #76

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a table and its related index
2. Try to delete the table or the index as a hole not row by row.

What is the expected output? 
Table/Index completely deleted along with their contents and their ids are
free to use by another table/index object in the same server.

What do you see instead?
Nothing only the ability to delete table/index rows one by one.

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by kaba.abo...@gmail.com on 9 Jun 2009 at 9:46

GoogleCodeExporter commented 9 years ago
More details from the posting at usergroup:

The second issue is not really a problem, but one of the system limitations.
Right now, once tables and indexes are created they can’t be deleted. So
until now what I am doing is delete the table and index files directly from
the file system and avoid to reuse the identifiers used for the table and
index that have been already registered in the server.

If there is some good way to come over the table and index deletion, that
will also be very helpful. 

Original comment by d.majum...@gmail.com on 28 Jun 2009 at 3:06

GoogleCodeExporter commented 9 years ago
Checked in implementation of drop table functionality.

Original comment by d.majum...@gmail.com on 10 Oct 2009 at 10:01

GoogleCodeExporter commented 9 years ago
Fixed in SimpleDBM Database 1.0.13.

Original comment by d.majum...@gmail.com on 17 Oct 2009 at 6:10