提交 905af6ae authored 作者: Thomas Mueller's avatar Thomas Mueller

Recovery did not work if there were more than 255 lobs stored as files.

上级 53987cb2
...@@ -70,7 +70,7 @@ public class FileLister { ...@@ -70,7 +70,7 @@ public class FileLister {
} else if (f.endsWith(Constants.SUFFIX_LOG_FILE)) { } else if (f.endsWith(Constants.SUFFIX_LOG_FILE)) {
ok = true; ok = true;
} else if (f.endsWith(Constants.SUFFIX_LOBS_DIRECTORY)) { } else if (f.endsWith(Constants.SUFFIX_LOBS_DIRECTORY)) {
if (FileUtils.fileStartsWith(f, start + ".")) { if (start == null || FileUtils.fileStartsWith(f, start + ".")) {
files.addAll(getDatabaseFiles(f, null, all)); files.addAll(getDatabaseFiles(f, null, all));
ok = true; ok = true;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论