提交 8f036966 编写于 作者: S Serge Rider

MySQL quotes fix


Former-commit-id: 53651f41
上级 e62bb51b
......@@ -101,7 +101,11 @@ public class CheckboxTreeManager implements ICheckStateListener {
private void updateElementHierarchy(final DBRProgressMonitor monitor, final Object element, final boolean checked, final boolean change) throws DBException {
final List<DBNDatabaseNode> targetChildren = new ArrayList<>();
final List<DBNDatabaseNode> targetContainers = new ArrayList<>();
try {
collectChildren(monitor, element, targetChildren, targetContainers, !change);
} catch (DBException e) {
log.warn("Error collecting child elements", e);
}
// Run ui
DBeaverUI.syncExec(new Runnable() {
......
......@@ -55,8 +55,8 @@ class MySQLDialect extends JDBCSQLDialect implements SQLRuleProvider {
};
public static final String[][] MYSQL_QUOTE_STRINGS = {
{"\"", "\""},
{"`", "`"},
{"\"", "\""},
};
public MySQLDialect() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册