提交 5181b56b authored 作者: Thomas Mueller's avatar Thomas Mueller

Triggers (including the fulltext search) could throw the exception 'Unexpected…

Triggers (including the fulltext search) could throw the exception 'Unexpected code path' in Session.log.
上级 888906fb
...@@ -101,8 +101,14 @@ public class Analyze extends DefineCommand { ...@@ -101,8 +101,14 @@ public class Analyze extends DefineCommand {
db.update(session, table); db.update(session, table);
} else { } else {
Session s = db.getSystemSession(); Session s = db.getSystemSession();
db.update(s, table); if (s != session) {
s.commit(true); // if the current session is the system session
// (which is the case if we are within a trigger)
// then we can't update the statistics because
// that would unlock all locked objects
db.update(s, table);
s.commit(true);
}
} }
} }
......
...@@ -40,6 +40,7 @@ public class TestFullText extends TestBase { ...@@ -40,6 +40,7 @@ public class TestFullText extends TestBase {
} }
public void test() throws Exception { public void test() throws Exception {
testAutoAnalyze();
testNativeFeatures(); testNativeFeatures();
testTransaction(false); testTransaction(false);
testCreateDrop(); testCreateDrop();
...@@ -73,6 +74,28 @@ public class TestFullText extends TestBase { ...@@ -73,6 +74,28 @@ public class TestFullText extends TestBase {
deleteDb("fullTextReopen"); deleteDb("fullTextReopen");
} }
private void testAutoAnalyze() throws SQLException {
if (config.memory) {
return;
}
deleteDb("fullTextNative");
Connection conn;
Statement stat;
conn = getConnection("fullTextNative");
stat = conn.createStatement();
stat.execute("create alias if not exists ft_init for \"org.h2.fulltext.FullText.init\"");
stat.execute("call ft_init()");
stat.execute("create table test(id int primary key, name varchar)");
stat.execute("call ft_create_index('PUBLIC', 'TEST', 'NAME')");
conn.close();
conn = getConnection("fullTextNative");
stat = conn.createStatement();
stat.execute("insert into test select x, 'x' from system_range(1, 3000)");
conn.close();
}
private void testNativeFeatures() throws SQLException { private void testNativeFeatures() throws SQLException {
if (config.memory) { if (config.memory) {
return; return;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论