Error "Blob not found" is issued when run DELETE FROM <T> RETURNING 
<BLOB_FIELD> (4.0.0 only)
---------------------------------------------------------------------------------------------

                 Key: CORE-5287
                 URL: http://tracker.firebirdsql.org/browse/CORE-5287
             Project: Firebird Core
          Issue Type: Bug
          Components: Engine
    Affects Versions: 4.0 Initial
            Reporter: Pavel Zotov


show version;
recreate table test(id int, x int, s varchar(10), d date, t time, u timestamp, 
b blob);
set blob all;
set list on;
set echo on;
insert into test values(1, 10, 'foo & bar', current_date, current_time, 
current_timestamp, 'The Great Blob');
delete from test returning id,x,s,d,t,u,b;

Output in 2.5.6.27017 & 3.0.1.32539:

ID                              1
X                               10
S                               foo & bar
D                               2016-06-21
T                               07:17:38.0000
U                               2016-06-21 07:17:38.0660
B                               83:0
The Great Blob

Output in 4.0.0.262:

ID                              1
X                               10
S                               foo & bar
D                               2016-06-21
T                               07:18:42.0000
U                               2016-06-21 07:18:42.0660
B                               80:0
Statement failed, SQLSTATE = HY000
BLOB not found


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to