aboutsummaryrefslogtreecommitdiff
path: root/weed
diff options
context:
space:
mode:
Diffstat (limited to 'weed')
-rw-r--r--weed/filer/arangodb/arangodb_store.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/weed/filer/arangodb/arangodb_store.go b/weed/filer/arangodb/arangodb_store.go
index c1445f026..23aefe40f 100644
--- a/weed/filer/arangodb/arangodb_store.go
+++ b/weed/filer/arangodb/arangodb_store.go
@@ -292,7 +292,10 @@ func (store *ArangodbStore) DeleteEntry(ctx context.Context, fullpath util.FullP
func (store *ArangodbStore) DeleteFolderChildren(ctx context.Context, fullpath util.FullPath) error {
var query string
- query = query + fmt.Sprintf(`filter starts_with(d.directory, "%s") remove d._key in files`,
+ query = query + fmt.Sprintf(`
+ for d in files
+ filter starts_with(d.directory, "%s/") || d.directory == "%s"
+ remove d._key in files`,
strings.Join(strings.Split(string(fullpath), "/"), ","),
string(fullpath),
)