#障害票777 全文の平均文書長が不正確
#

Begin;
Initialize;
InitializeSession "TESTDB";

Command "create database TESTDB";
Command "create table T (F ntext)";
#Command "create fulltext index T_F on T(F)";
Command "create fulltext index T_F on T(F) hint 'delayed'";
Command "insert into T values ('aaa')";

Command "select avg(char_length(F)) from T";

Command "drop index T_F";
#Command "create fulltext index T_F on T(F)";
Command "create fulltext index T_F on T(F) hint 'delayed'";

Command "select avg(char_length(F)) from T";

Command "drop database TESTDB";

TerminateSession;
Terminate;
End;
