📄 xab2354.out
字号:
ij> xa_datasource 'wombat' create;ij> xa_connect;ij> xa_start xa_noflags 1;ij> xa_getconnection;ij(XA)> create table foo (a int);0 rows inserted/updated/deletedij(XA)> insert into foo values (1);1 row inserted/updated/deletedij(XA)> xa_end xa_success 1;ij(XA)> xa_commit xa_1phase 1;ij(XA)> xa_start xa_noflags 1;ij(XA)> insert into foo values (2);1 row inserted/updated/deletedij(XA)> select cast(global_xid as char(2)) as gxid, status from new org.apache.derby.diag.TransactionTable() t where gxid is not null order by gxid, status;ERROR 42X04: Column 'GXID' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE statement then 'GXID' is not a column in the target table.ij(XA)> xa_end xa_success 1;ij(XA)> xa_prepare 1;ij(XA)> xa_getconnection ;ij(XA)> select cast(global_xid as char(2)) as gxid, status from new org.apache.derby.diag.TransactionTable() t where gxid is not null order by gxid, status;ERROR 42X04: Column 'GXID' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE statement then 'GXID' is not a column in the target table.ij(XA)> xa_datasource 'wombat' shutdown;ERROR 08006: Database 'wombat' shutdown.ij(XA)> xa_datasource 'wombat';ij(XA)> xa_connect;ij(XA)> -- this works correctlyxa_start xa_noflags 1;IJ ERROR: XAER_DUPID ij(XA)> xa_getconnection;ij(XA)> -- this was the bug, this statement should also get DUPID errorxa_start xa_noflags 1;IJ ERROR: XAER_DUPID ij(XA)> -- should see two transactions, one global transaction and one localselect cast(global_xid as char(2)) as gxid, status from new org.apache.derby.diag.TransactionTable() t where gxid is not null order by gxid, status;ERROR 42X04: Column 'GXID' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE statement then 'GXID' is not a column in the target table.ij(XA)>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -