# Q[ 1114
# bitmap index

Begin;
Initialize;
InitializeSession "";

Command "create table T(c varchar(4))";
Command "create bitmap index I on T(c)";
Command "insert T values '', '', 'a'";
Command "select * from T where c like '%'";
Command "select * from T where c > ''";
Command "select * from T where c >= ''";
Command "drop table T";
Command "create table T(c varchar(4))";
Command "create bitmap index I on T(c)";
Command "insert T values 'ab', 'ab', 'aba'";
Command "select * from T where c like 'ab%'";
Command "select * from T where c > 'ab'";
Command "select * from T where c >= 'ab'";
Command "drop table T";

TerminateSession;
Terminate;
End;
