okadakk commented on a change in pull request #12593:
URL: https://github.com/apache/arrow/pull/12593#discussion_r824761950



##########
File path: ruby/red-arrow/test/values/test-basic-arrays.rb
##########
@@ -286,6 +286,21 @@ def test_month_interval
     target = build(Arrow::MonthIntervalArray.new(values))
     assert_equal(values, target.values)
   end
+
+  def test_day_time_interval
+    values = [
+      {day: 1, millisecond: 100},
+      nil,
+      {day: 2, millisecond: 300},
+    ]
+    inputs = [
+      Arrow::DayMillisecond.new(1, 100),
+      nil,
+      Arrow::DayMillisecond.new(2, 300),
+    ]
+    target = build(Arrow::DayTimeIntervalArray.new(inputs))

Review comment:
       OK!
   I opened it!
   https://issues.apache.org/jira/browse/ARROW-15918 
   
   And I challenge to support this!!




-- 
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