diff options
| author | Устюжанин Антон Александрович <ustuzhanin@tochka.com> | 2020-08-06 00:38:59 +0500 |
|---|---|---|
| committer | Устюжанин Антон Александрович <ustuzhanin@tochka.com> | 2020-08-06 00:38:59 +0500 |
| commit | 9ca011e3cab51f7f0489df463ba4566216d8cf8b (patch) | |
| tree | 14f97e2fd2606b1e03acd8a6f0802eda35ac3395 | |
| parent | b231f7bdab084683099f429631e4d1dcfb6ae7e5 (diff) | |
| download | seaweedfs-9ca011e3cab51f7f0489df463ba4566216d8cf8b.tar.xz seaweedfs-9ca011e3cab51f7f0489df463ba4566216d8cf8b.zip | |
ListDirectoryPrefixedEntries
| -rw-r--r-- | weed/filer2/abstract_sql/abstract_sql_store.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer2/abstract_sql/abstract_sql_store.go b/weed/filer2/abstract_sql/abstract_sql_store.go index fb0cadee5..d1ce83de6 100644 --- a/weed/filer2/abstract_sql/abstract_sql_store.go +++ b/weed/filer2/abstract_sql/abstract_sql_store.go @@ -182,8 +182,8 @@ 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, prefix string) (entries []*filer2.Entry, err error) { - return nil, fmt.Errorf("not implemented") +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, "") } |
