提交 094e1847 authored 作者: Thomas Mueller's avatar Thomas Mueller

The H2 Console did not call the CreateCluster tool with the correctly escaped parameters.

上级 9cbb5a2d
......@@ -35,7 +35,7 @@ function quote(x) {
var q = '';
for (var i=0; i<x.length; i++) {
var c = x.charAt(i);
if(c == '"' || c == '\\') {
if(c == '"' || c == '\\' || c == ',') {
q += '\\';
}
q += c;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论