Bug in local SQL Delphi 2.01

I have a paradox table like that :

Create table TestTable (
  Field1 AnyType1 not null,
  Field2 AnyType1 not null,
primary key (Field1;Field2)
);

and making query

Select * from TestTable where Field1<AnyValue;

that causes  Access violation.

I am interesting who have same or  different  results.