Hi,

> I am not familiar with this issue tracker.

It's the one from Google Code. It's not as sophisticated as Jira, but
it works well for what I need.

> As far as I can tell it is still an open issue.

I closed it today: Implemented in version 1.2.139. Example usage:

set autocommit true;
create table test(id int);
insert into test values(1);
set autocommit false;
insert into test values(2);
create local temporary table temp(id int primary key, name
varchar(255)) transactional;
insert into temp values(1, 'test');
rollback;
select * from test;
drop table test;
drop table temp;

set autocommit true;
create table test(id int);
insert into test values(1);
set autocommit false;
insert into test values(2);
create local temporary table temp(id int primary key, name
varchar(255)) on commit drop transactional;
insert into temp values(1, 'test');
select * from temp;
rollback;
select * from test;
drop table test;
-- table already dropped, so this will fail:
select * from temp;

Regards,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to