Begin;
Initialize;
InitializeSession "TESTDB";
Command "create database TESTDB";
TerminateSession;
InitializeSession "TESTDB";
#
# ALL ROWS INDEX -- null値も格納するBtree索引のテスト -- データ状態と更新 : 非複合索引
#
Command "create table T(i int, j int, c1 char(4), c2 nchar(4), c3 varchar(4), c4 nvarchar(4), c5 varchar(4) hint nontruncate, c6 nvarchar(4) hint nontruncate, c7 int, c8 bigint, c9 float, c10 datetime, c11 language, c12 decimal(2,0), primary key(i, j))";

## index
Command "create index I on T(c2)";
Command "insert into T values(0, 1, (null), 'あくう', (null), 'あくう', (null), 'abz', (null), 987654321, (null), '2007-06-01 12:34:56.789', (null), 0)";
Command "verify index I cascade continue";
Command "select c2 from T where c2 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', 'aby', 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c3)";
Command "update T set c3 = 'abx' where i = 0";
Command "verify index I cascade continue";
Command "select c3 from T where c3 = 'abx'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), (null), (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), (null), (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), (null), (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(1, 4, (null), 'あかう', (null), 'あかう', (null), (null), (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), (null), (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c6)";
Command "update T set c6 = (null) where i = 1";
Command "verify index I cascade continue";
Command "select c6 from T where c6 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', 456, 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', 234, 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c7)";
Command "update T set c7 = 321 where c7 is null";
Command "verify index I cascade continue";
Command "select c7 from T where c7 = 321";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', 'aby', 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c5)";
Command "delete from T where c5 is null";
Command "verify index I cascade continue";
Command "select c5 from T where c5 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), (null), (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), (null), (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), (null), (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c8)";
Command "insert into T values(1, 6, (null), 'あくう', (null), 'あくう', (null), 'abz', (null), (null), (null), '2007-06-01 12:34:56.789', (null), 0)";
Command "verify index I cascade continue";
Command "select c8 from T where c8 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', 'zh', 1)";
Command "create index I on T(c11)";
Command "update T set c11 = 'de' where c11 is not null";
Command "verify index I cascade continue";
Command "select c11 from T where c11 = 'de'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, 3.141592, '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, 1.414213, '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(0, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, 2.718281, '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, 1.234567, '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(0, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, 2.345678, '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c9)";
Command "delete from T where c9 is not null";
Command "verify index I cascade continue";
Command "select c9 from T where c9 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', 'aby', 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c3)";
Command "insert into T values(0, 3, (null), 'あくう', 'abz', 'あくう', (null), 'abz', (null), 987654321, (null), '2007-06-01 12:34:56.789', (null), 0)";
Command "verify index I cascade continue";
Command "select c3 from T where c3 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), (null), (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c6)";
Command "update T set c6 = 'abz' where i = 0";
Command "verify index I cascade continue";
Command "select c6 from T where c6 = 'abz'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', 123, 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', 456, 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(0, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', 789, 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', 234, 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(0, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', 567, 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c7)";
Command "update T set c7 = 123 where i = 0";
Command "verify index I cascade continue";
Command "select c7 from T where c7 = 123";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), (null))";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), (null))";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), (null))";
Command "create index I on T(c12)";
Command "update T set c12 = 0 where i = 1";
Command "verify index I cascade continue";
Command "select c12 from T where c12 = 0";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), (null), (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), (null), (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), (null), (null), 4)";
Command "create index I on T(c10)";
Command "update T set c10 = '2007-06-01 12:34:56.789' where c10 is null";
Command "verify index I cascade continue";
Command "select c10 from T where c10 = '2007-06-01 12:34:56.789'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c1)";
Command "delete from T where i = 1";
Command "verify index I cascade continue";
Command "select c1 from T where c1 is null";
Command "drop index I";
Command "delete from T";

Command "create index I on T(c7)";
Command "insert into T values(0, 1, (null), 'あくう', (null), 'あくう', (null), 'abz', 321, 987654321, (null), '2007-06-01 12:34:56.789', (null), 0)";
Command "verify index I cascade continue";
Command "select c7 from T where c7 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(0, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(0, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c2)";
Command "update T set c2 = 'あくう' where i = 0";
Command "verify index I cascade continue";
Command "select c2 from T where c2 = 'あくう'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), (null), (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c4)";
Command "update T set c4 = (null) where c4 is not null";
Command "verify index I cascade continue";
Command "select c4 from T where c4 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), (null), (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), (null), (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), (null), (null), 2)";
Command "insert into T values(1, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), (null), (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), (null), (null), 4)";
Command "create index I on T(c10)";
Command "delete from T where c10 is null";
Command "verify index I cascade continue";
Command "select c10 from T where c10 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', 'zh', 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', 'fr', 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c11)";
Command "insert into T values(0, 6, (null), 'あくう', (null), 'あくう', (null), 'abz', (null), 987654321, (null), '2007-06-01 12:34:56.789', 'de', 0)";
Command "verify index I cascade continue";
Command "select c11 from T where c11 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, 'aby', 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, 'abd', 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c1)";
Command "update T set c1 = (null) where i = 0";
Command "verify index I cascade continue";
Command "select c1 from T where c1 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(1, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c3)";
Command "update T set c3 = (null) where c3 is null";
Command "verify index I cascade continue";
Command "select c3 from T where c3 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), (null), (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), (null), (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), (null), (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c8)";
Command "update T set c8 = (null) where i = 0";
Command "verify index I cascade continue";
Command "select c8 from T where c8 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "create index I on T(c5)";
Command "update T set c5 = (null) where i = 1";
Command "verify index I cascade continue";
Command "select c5 from T where c5 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "create index I on T(c7)";
Command "update T set c7 = (null) where c7 is null";
Command "verify index I cascade continue";
Command "select c7 from T where c7 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, 'aby', 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c1)";
Command "delete from T where i = 0";
Command "verify index I cascade continue";
Command "select c1 from T where c1 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), (null), (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c2)";
Command "delete from T where i = 0";
Command "verify index I cascade continue";
Command "select c2 from T where c2 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), (null))";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c12)";
Command "insert into T values(1, 3, (null), 'あくう', (null), 'あくう', (null), 'abz', (null), 987654321, (null), '2007-06-01 12:34:56.789', (null), (null))";
Command "verify index I cascade continue";
Command "select c12 from T where c12 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), (null), (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), (null), (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), (null), (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create index I on T(c8)";
Command "update T set c8 = 987654321 where c8 is null";
Command "verify index I cascade continue";
Command "select c8 from T where c8 = 987654321";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create index I on T(c10)";
Command "update T set c10 = '2007-06-01 12:34:56.789' where c10 is not null";
Command "verify index I cascade continue";
Command "select c10 from T where c10 = '2007-06-01 12:34:56.789'";
Command "drop index I";
Command "delete from T";


## all rows index
Command "create all rows index I on T(c1)";
Command "insert into T values(1, 1, (null), 'あくう', (null), 'あくう', (null), 'abz', (null), 987654321, (null), '2007-06-01 12:34:56.789', (null), 0)";
Command "verify index I cascade continue";
Command "select c1 from T where c1 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "create all rows index I on T(c4)";
Command "update T set c4 = 'あくう' where i = 0";
Command "verify index I cascade continue";
Command "select c4 from T where c4 = 'あくう'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, 1.414213, '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c9)";
Command "update T set c9 = (null) where c9 is not null";
Command "verify index I cascade continue";
Command "select c9 from T where c9 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), (null), (null), -1)";
Command "create all rows index I on T(c10)";
Command "delete from T where i = 1";
Command "verify index I cascade continue";
Command "select c10 from T where c10 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), (null))";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), (null))";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), (null))";
Command "create all rows index I on T(c12)";
Command "delete from T where c12 is null";
Command "verify index I cascade continue";
Command "select c12 from T where c12 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', 'zh', 1)";
Command "create all rows index I on T(c11)";
Command "update T set c11 = 'de' where i = 1";
Command "verify index I cascade continue";
Command "select c11 from T where c11 = 'de'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), (null), (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), (null), (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c8)";
Command "update T set c8 = (null) where c8 is null";
Command "verify index I cascade continue";
Command "select c8 from T where c8 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), (null), (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), (null), (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), (null), (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c6)";
Command "delete from T where i = 0";
Command "verify index I cascade continue";
Command "select c6 from T where c6 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "create all rows index I on T(c2)";
Command "update T set c2 = (null) where i = 0";
Command "verify index I cascade continue";
Command "select c2 from T where c2 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, 'abx', 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, 'aby', 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c1)";
Command "update T set c1 = 'abz' where c1 is not null";
Command "verify index I cascade continue";
Command "select c1 from T where c1 = 'abz'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), (null), (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), (null), (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c4)";
Command "insert into T values(1, 3, (null), 'あくう', (null), (null), (null), 'abz', (null), 987654321, (null), '2007-06-01 12:34:56.789', (null), 0)";
Command "verify index I cascade continue";
Command "select c4 from T where c4 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', 'aby', 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c5)";
Command "update T set c5 = 'abz' where i = 1";
Command "verify index I cascade continue";
Command "select c5 from T where c5 = 'abz'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, 'aby', 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, 'abd', 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c1)";
Command "update T set c1 = (null) where i = 1";
Command "verify index I cascade continue";
Command "select c1 from T where c1 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "create all rows index I on T(c2)";
Command "update T set c2 = (null) where c2 is not null";
Command "verify index I cascade continue";
Command "select c2 from T where c2 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c9)";
Command "update T set c9 = (null) where c9 is null";
Command "verify index I cascade continue";
Command "select c9 from T where c9 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', 456, 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c7)";
Command "delete from T where i = 0";
Command "verify index I cascade continue";
Command "select c7 from T where c7 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', 'aby', 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', 'abd', 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c5)";
Command "delete from T where c5 is not null";
Command "verify index I cascade continue";
Command "select c5 from T where c5 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', 456, 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c7)";
Command "update T set c7 = (null) where i = 0";
Command "verify index I cascade continue";
Command "select c7 from T where c7 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, 'aby', 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, 'abd', 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c1)";
Command "update T set c1 = 'abz' where i = 0";
Command "verify index I cascade continue";
Command "select c1 from T where c1 = 'abz'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), (null))";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), (null))";
Command "create all rows index I on T(c12)";
Command "update T set c12 = (null) where i = 1";
Command "verify index I cascade continue";
Command "select c12 from T where c12 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(1, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c3)";
Command "update T set c3 = 'abz' where c3 is null";
Command "verify index I cascade continue";
Command "select c3 from T where c3 = 'abz'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), (null), (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(1, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), (null), (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), (null), (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(1, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), (null), (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), (null), (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c8)";
Command "delete from T where i = 1";
Command "verify index I cascade continue";
Command "select c8 from T where c8 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c8)";
Command "update T set c8 = 847865165 where i = 0";
Command "verify index I cascade continue";
Command "select c8 from T where c8 = 847865165";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', 'zh', 1)";
Command "create all rows index I on T(c11)";
Command "delete from T where c11 is not null";
Command "verify index I cascade continue";
Command "select c11 from T where c11 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, 'aby', 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c1)";
Command "delete from T where c1 is null";
Command "verify index I cascade continue";
Command "select c1 from T where c1 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', 'aby', 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c3)";
Command "update T set c3 = (null) where i = 1";
Command "verify index I cascade continue";
Command "select c3 from T where c3 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "create all rows index I on T(c12)";
Command "update T set c12 = 0 where c12 is not null";
Command "verify index I cascade continue";
Command "select c12 from T where c12 = 0";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), (null))";
Command "create all rows index I on T(c12)";
Command "delete from T where i = 1";
Command "verify index I cascade continue";
Command "select c12 from T where c12 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), (null), (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c6)";
Command "insert into T values(0, 3, (null), 'あくう', (null), 'あくう', (null), 'abz', (null), 987654321, (null), '2007-06-01 12:34:56.789', (null), 0)";
Command "verify index I cascade continue";
Command "select c6 from T where c6 is not null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), (null), (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), (null), (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), (null), (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c6)";
Command "update T set c6 = 'abz' where c6 is not null";
Command "verify index I cascade continue";
Command "select c6 from T where c6 = 'abz'";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), (null), (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), 'あおう', (null), (null), (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), 'あきう', (null), (null), (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c6)";
Command "update T set c6 = (null) where c6 is null";
Command "verify index I cascade continue";
Command "select c6 from T where c6 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, 1.414213, '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c9)";
Command "update T set c9 = (null) where i = 0";
Command "verify index I cascade continue";
Command "select c9 from T where c9 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, 3.141592, '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, 1.414213, '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(0, 3, (null), 'あおう', (null), 'あおう', (null), 'abc', (null), 234567891, 2.718281, '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, 1.234567, '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(0, 5, (null), 'あきう', (null), 'あきう', (null), 'abe', (null), 456789123, 2.345678, '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c9)";
Command "update T set c9 = 3.141592 where i = 0";
Command "verify index I cascade continue";
Command "select c9 from T where c9 = 3.141592";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "create all rows index I on T(c9)";
Command "update T set c9 = (null) where i = 1";
Command "verify index I cascade continue";
Command "select c9 from T where c9 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), (null), (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), -1)";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "insert into T values(1, 3, (null), 'あおう', (null), (null), (null), 'abc', (null), 234567891, (null), '2007-03-01 12:34:56.789', (null), 2)";
Command "insert into T values(0, 4, (null), 'あかう', (null), 'あかう', (null), 'abd', (null), 345678912, (null), '2007-04-01 12:34:56.789', (null), 3)";
Command "insert into T values(1, 5, (null), 'あきう', (null), (null), (null), 'abe', (null), 456789123, (null), '2007-05-01 12:34:56.789', (null), 4)";
Command "create all rows index I on T(c4)";
Command "delete from T where c4 is null";
Command "verify index I cascade continue";
Command "select c4 from T where c4 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(0, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', 'ja', -1)";
Command "create all rows index I on T(c11)";
Command "update T set c11 = (null) where i = 0";
Command "verify index I cascade continue";
Command "select c11 from T where c11 is null";
Command "drop index I";
Command "delete from T";

Command "insert into T values(1, 1, (null), 'あいう', (null), 'あいう', (null), 'abx', (null), 847865165, (null), '2007-01-01 12:34:56.789', (null), (null))";
Command "insert into T values(0, 2, (null), 'あえう', (null), 'あえう', (null), 'aby', (null), 123456789, (null), '2007-02-01 12:34:56.789', (null), 1)";
Command "create all rows index I on T(c12)";
Command "update T set c12 = (null) where c12 is not null";
Command "verify index I cascade continue";
Command "select c12 from T where c12 is null";
Command "drop index I";
Command "delete from T";

Command "drop table T";
TerminateSession;
InitializeSession "TESTDB";
Command "drop database TESTDB";
TerminateSession;
Terminate;
End;
