提交 c2a3dab7 authored 作者: Thomas Mueller's avatar Thomas Mueller

Spellchecker

上级 d5eac947
......@@ -939,10 +939,10 @@ public class TestFunctions extends TestBase implements AggregateFunction {
deleteDb("functions");
Connection conn = getConnection("functions");
Statement stat = conn.createStatement();
stat.execute("create alias MYTF2 deterministic for \"" + TestFunctions.class.getName() + ".testCache\"");
stat.execute("create view MVIEW2 as select * from MYTF2()");
stat.execute("create alias MY_TF2 deterministic for \"" + TestFunctions.class.getName() + ".testCache\"");
stat.execute("create view M_VIEW2 as select * from MY_TF2()");
countOfCallsToTestCache = 0;
stat.executeQuery("select * from MVIEW2");
stat.executeQuery("select * from M_VIEW2");
assertEquals(0, countOfCallsToTestCache);
conn.close();
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论