Skip to content

Commit

Permalink
0004126: h2/sqlite can't query table while its being loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 29, 2019
1 parent 58fee19 commit 9db3e7a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -175,7 +175,7 @@ private boolean hasClientReloadListener(DataContext context) {
hasListener = engine.getExtensionService().getExtensionPointList(IClientReloadListener.class).size() > 0;
context.put(CTX_KEY_INITIAL_LOAD_LISTENER, hasListener);
}
return hasListener;
return hasListener && engine.getDatabasePlatform().supportsMultiThreadedTransactions();
}

private void recordGroupletFlushNeeded(DataContext context, Table table) {
Expand Down

0 comments on commit 9db3e7a

Please sign in to comment.