You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ba...@apache.org on 2023/07/29 19:42:50 UTC

[arrow-julia] branch main updated: Fix example in Arrow.Writer (#480)

This is an automated email from the ASF dual-hosted git repository.

baumgold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git


The following commit(s) were added to refs/heads/main by this push:
     new d669562  Fix example in Arrow.Writer (#480)
d669562 is described below

commit d6695626fbd1f4db5b5da5b0b137893d16871fc6
Author: Guilherme Bodin <32...@users.noreply.github.com>
AuthorDate: Sat Jul 29 16:42:45 2023 -0300

    Fix example in Arrow.Writer (#480)
---
 src/write.jl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/write.jl b/src/write.jl
index a643ddc..18bdc4e 100644
--- a/src/write.jl
+++ b/src/write.jl
@@ -104,7 +104,7 @@ julia> open(Arrow.Writer, tempname()) do writer
            partition1 = (col1 = [1, 2], col2 = ["A", "B"])
            Arrow.write(writer, partition1)
            partition2 = (col1 = [3, 4], col2 = ["C", "D"])
-           Arrow.write(writer, partition1)
+           Arrow.write(writer, partition2)
        end
 ```
 """