Product Documentation

V11.5 Release Notes

Previous Topic

Next Topic

SQL handling of binary literals larger than field size

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.

TOCIndex