[ 
https://issues.apache.org/jira/browse/DERBY-5161?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Knut Anders Hatlen updated DERBY-5161:
--------------------------------------

    Attachment: finally.diff

Attaching a patch that moves popStatementContext() into a finally clause. Now 
the repro doesn't fail when invoking rollback:

ij version 10.8
ij> connect 'jdbc:derby:db;create=true';
ij> autocommit off;
ij> create table t(x int);
0 rows inserted/updated/deleted
ij> alter table t add column """" int default 42;
ERROR 42X01: Syntax error: Encountered "\"" at line 1, column 22.
Issue the 'help' command for general information on IJ command syntax.
Any unrecognized commands are treated as potential SQL commands and executed 
directly.
Consult your DBMS server reference documentation for details of the SQL syntax 
supported by your server.
ij> rollback;
ij> 

I haven't run any other tests yet. No regression tests have been added since I 
don't know how to reproduce the problem without backing out DERBY-5157.

> Cannot rollback after syntax error in internal statement
> --------------------------------------------------------
>
>                 Key: DERBY-5161
>                 URL: https://issues.apache.org/jira/browse/DERBY-5161
>             Project: Derby
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 10.7.1.1
>            Reporter: Knut Anders Hatlen
>         Attachments: finally.diff
>
>
> To reproduce, execute the statements below in ij. Can only be reproduced this 
> way before DERBY-5157. I don't know how to reproduce it when that bug is 
> fixed.
> ij version 10.7
> ij> connect 'jdbc:derby:db;create=true';
> ij> autocommit off;
> ij> create table t(x int);
> 0 rows inserted/updated/deleted
> ij> alter table t add column """" int default 42;
> ERROR 42X01: Syntax error: Encountered "\"" at line 1, column 22.
> Issue the 'help' command for general information on IJ command syntax.
> Any unrecognized commands are treated as potential SQL commands and executed 
> directly.
> Consult your DBMS server reference documentation for details of the SQL 
> syntax supported by your server.
> ij> rollback;
> ERROR X0Y67: Cannot issue rollback in a nested connection when there is a 
> pending operation in the parent connection.
> The error message implies that we've called rollback() on a nested 
> transaction, whereas we're in fact called it on the parent transaction.
> Expected result: The rollback statement should abort the transaction without 
> raising any errors.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to