foreign key (test) references autoconflog_string(id) on delete cascade,
foreign key (result) references autoconflog_string(id) on delete cascade,
foreign key (testsuite) references autoconflog_testsuite(id) on delete cascade);
+CREATE INDEX if not exists autoconflog_testcase_ts on autoconflog_testcase(testsuite);
CREATE VIEW if not exists autoconflog_testcase_v (testsuite, filename, test, result, cursor) as
select t.testsuite, fs.name, st.name, rs.name, t.cursor
from autoconflog_testcase t, autoconflog_testsuite ts, autoconflog_string fs, autoconflog_string st, autoconflog_string rs