|
[
Permalink
| « Hide
]
Pavel Cisar added a comment - 16/Jun/07 10:16 AM
This is wonderful problem description. CVS comment that would link code changes to this ticket is also missing, so I can only take your word that some problem exists and it's now gone.
Consider c1 and c2 as two connections, with classic server:
c1: isql c1: create database 'x.fdb'; c2: isql x.fdb c1: create table t (n integer); c2: select * from t; c2: commit; c1: drop table t; c2: commit; c2: create table t (n integer); c2: select * from t; Statement failed, SQLCODE = -104 invalid request BLR at offset 28 -table id 128 is not defined You see, c2 can create a table but can't use it. It probably created with id 129, but our cache had a reference to id 128. |
||||||||||||||||||||||||||||||||||||||||||||||