hiroyuki-sato commented on code in PR #48480:
URL: https://github.com/apache/arrow/pull/48480#discussion_r2616651756


##########
ruby/red-arrow-format/test/test-file-reader.rb:
##########
@@ -128,6 +128,39 @@ def test_read
     end
   end
 
+  sub_test_case("Int64") do
+    def build_array
+      Arrow::Int64Array.new([
+                              -9223372036854775808,
+                              nil,
+                              9223372036854775807
+                            ])
+    end
+
+    def test_read
+      assert_equal([{"value" => 
+                      [
+                        -9223372036854775808,
+                        nil,
+                        9223372036854775807
+                      ]
+                    }
+                   ],
+                   read)

Review Comment:
   ditto



##########
ruby/red-arrow-format/test/test-file-reader.rb:
##########
@@ -128,6 +128,39 @@ def test_read
     end
   end
 
+  sub_test_case("Int64") do
+    def build_array
+      Arrow::Int64Array.new([
+                              -9223372036854775808,
+                              nil,
+                              9223372036854775807
+                            ])

Review Comment:
   correct format?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to