nealrichardson commented on a change in pull request #10782: URL: https://github.com/apache/arrow/pull/10782#discussion_r676596917
########## File path: cpp/src/arrow/csv/column_builder_test.cc ########## @@ -400,6 +400,24 @@ TEST_F(InferringColumnBuilderTest, MultipleChunkDate) { ArrayFromJSON(date32(), "[null]")}); } +TEST_F(InferringColumnBuilderTest, SingleChunkTime) { + auto options = ConvertOptions::Defaults(); + auto tg = TaskGroup::MakeSerial(); + + CheckInferred(tg, {{"", "01:23:45", "NA"}}, options, + {ArrayFromJSON(time32(TimeUnit::SECOND), "[null, 5025, null]")}); +} + +TEST_F(InferringColumnBuilderTest, MultipleChunkTime) { + auto options = ConvertOptions::Defaults(); + auto tg = TaskGroup::MakeSerial(); + auto type = time32(TimeUnit::SECOND); Review comment: Ah I see, I was looking at the wrong case statement, you're right. Maybe there should be one to catch any times with fractional seconds, though I don't feel strongly about it since you can explicitly declare the type/schema you want. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org