aboutsummaryrefslogtreecommitdiff
path: root/weed/filer2/abstract_sql
diff options
context:
space:
mode:
authorKonstantin Lebedev <lebedev_k@tochka.com>2020-08-31 17:13:56 +0500
committerKonstantin Lebedev <lebedev_k@tochka.com>2020-08-31 17:13:56 +0500
commit2ea638f865c9bebe89c05d8a4acf90a1447375f3 (patch)
treeee44c43fd8766c7c7be104d4dd3e90ae5697882f /weed/filer2/abstract_sql
parent9ca011e3cab51f7f0489df463ba4566216d8cf8b (diff)
downloadseaweedfs-2ea638f865c9bebe89c05d8a4acf90a1447375f3.tar.xz
seaweedfs-2ea638f865c9bebe89c05d8a4acf90a1447375f3.zip
filer store wrapper can implement the logic to filter by prefi
Diffstat (limited to 'weed/filer2/abstract_sql')
-rw-r--r--weed/filer2/abstract_sql/abstract_sql_store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filer2/abstract_sql/abstract_sql_store.go b/weed/filer2/abstract_sql/abstract_sql_store.go
index d1ce83de6..7f591413a 100644
--- a/weed/filer2/abstract_sql/abstract_sql_store.go
+++ b/weed/filer2/abstract_sql/abstract_sql_store.go
@@ -182,9 +182,9 @@ func (store *AbstractSqlStore) ListDirectoryPrefixedEntries(ctx context.Context,
return entries, nil
}
+
func (store *AbstractSqlStore) ListDirectoryEntries(ctx context.Context, fullpath util.FullPath, startFileName string, inclusive bool, limit int) (entries []*filer2.Entry, err error) {
return store.ListDirectoryPrefixedEntries(ctx, fullpath, startFileName, inclusive, limit, "")
-
}
func (store *AbstractSqlStore) Shutdown() {