提交 027953c5 authored 作者: Noel Grandin's avatar Noel Grandin

address some review comments

上级 362c1398
......@@ -117,7 +117,7 @@ public class TestTriggersConstraints extends TestBase implements Trigger {
stat.execute("create table test(id int) as select 1");
stat.execute("create trigger test_u before update on test " +
"for each row call \"" + DeleteTrigger.class.getName() + "\"");
// this threw a NullPointerException
// this used to throw a NullPointerException before we fixed it
stat.execute("update test set id = 2");
stat.execute("drop table test");
conn.close();
......
......@@ -90,10 +90,7 @@ public class TestScript extends TestBase {
testScript("dual.sql");
testScript("indexes.sql");
testScript("information_schema.sql");
if (config.mvStore) {
// we get slightly different explain plan stuff here in PageStore mode
testScript("joins.sql");
}
testScript("joins.sql");
testScript("range_table.sql");
testScript("altertable-index-reuse.sql");
testScript("altertable-fk.sql");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论