This is an automated email from the ASF dual-hosted git repository.
lostluck pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.
from 3c67192 Update local_env_tests.yml (#16444)
add 3c53a78 [BEAM-13574] Filesystem abstraction Rename support (#16428)
No new revisions were added by this update.
Summary of changes:
sdks/go/pkg/beam/io/filesystem/filesystem.go | 31 +-
.../filesystem/filesystem_test.go} | 26 +-
sdks/go/pkg/beam/io/filesystem/gcs/gcs.go | 36 ++
.../{util/gcsx => io/filesystem/gcs}/gcs_test.go | 31 +-
sdks/go/pkg/beam/io/filesystem/local/local.go | 16 +
sdks/go/pkg/beam/io/filesystem/local/local_test.go | 179 +++++++++
sdks/go/pkg/beam/io/filesystem/memfs/memory.go | 70 +++-
.../go/pkg/beam/io/filesystem/memfs/memory_test.go | 125 ++++++-
sdks/go/pkg/beam/io/filesystem/util.go | 67 ++++
sdks/go/pkg/beam/io/filesystem/util_test.go | 399 +++++++++++++++++++++
sdks/go/pkg/beam/runners/flag.go | 1 +
11 files changed, 927 insertions(+), 54 deletions(-)
copy sdks/go/pkg/beam/{core/runtime/coderx/string_test.go =>
io/filesystem/filesystem_test.go} (66%)
copy sdks/go/pkg/beam/{util/gcsx => io/filesystem/gcs}/gcs_test.go (64%)
create mode 100644 sdks/go/pkg/beam/io/filesystem/local/local_test.go
create mode 100644 sdks/go/pkg/beam/io/filesystem/util_test.go