mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix compilation
This commit is contained in:
parent
a631b2a9e9
commit
e6ee421d61
|
@ -55,6 +55,10 @@ func (store *TikvStore) DeleteEntry(ctx context.Context, fullpath filer2.FullPat
|
||||||
return fmt.Errorf("not implemented for 32 bit computers")
|
return fmt.Errorf("not implemented for 32 bit computers")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (store *TikvStore) DeleteFolderChildren(ctx context.Context, fullpath filer2.FullPath) (err error) {
|
||||||
|
return fmt.Errorf("not implemented for 32 bit computers")
|
||||||
|
}
|
||||||
|
|
||||||
func (store *TikvStore) ListDirectoryEntries(ctx context.Context, fullpath filer2.FullPath, startFileName string, inclusive bool,
|
func (store *TikvStore) ListDirectoryEntries(ctx context.Context, fullpath filer2.FullPath, startFileName string, inclusive bool,
|
||||||
limit int) (entries []*filer2.Entry, err error) {
|
limit int) (entries []*filer2.Entry, err error) {
|
||||||
return nil, fmt.Errorf("not implemented for 32 bit computers")
|
return nil, fmt.Errorf("not implemented for 32 bit computers")
|
||||||
|
|
Loading…
Reference in a new issue