mirror of https://gitee.com/bigwinds/arangodb
fix explainer for compatibility with 3.4
This commit is contained in:
parent
8913dd4062
commit
33ad71dd1c
|
@ -303,7 +303,7 @@ function printIndexes(indexes) {
|
|||
if (l > maxIdLen) {
|
||||
maxIdLen = l;
|
||||
}
|
||||
l = index.name.length;
|
||||
l = index.name ? index.name.length : 0;
|
||||
if (l > maxNameLen) {
|
||||
maxNameLen = l;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue