Skip to content

Commit cdfc616

Browse files
author
nullccxsy
committed
feat: change the return type of MakeMockFileIO, MakeLocalFileIO
1 parent 3d617a8 commit cdfc616

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/iceberg/arrow/arrow_fs_file_io_internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ class ICEBERG_BUNDLE_EXPORT ArrowFileSystemFileIO : public FileIO {
3535
: arrow_fs_(std::move(arrow_fs)) {}
3636

3737
/// \brief Make an in-memory FileIO backed by arrow::fs::internal::MockFileSystem.
38-
static std::unique_ptr<::arrow::fs::FileSystem> MakeMockFileIO();
38+
static std::unique_ptr<FileIO> MakeMockFileIO();
3939

4040
/// \brief Make a local FileIO backed by arrow::fs::LocalFileSystem.
41-
static std::unique_ptr<::arrow::fs::FileSystem> MakeLocalFileIO();
41+
static std::unique_ptr<FileIO> MakeLocalFileIO();
4242

4343
~ArrowFileSystemFileIO() override = default;
4444

0 commit comments

Comments
 (0)