A server crash was seen with a SQL statement that used binary literals that were larger than the field size, for example:
create table tsttbl ( col1 binary , col2 varbinary(2), col3 char(4),col4 char(4));
!echo _delete from table
delete from tsttbl where col1 < x'aabb';
The logic has been modified to handle this properly.