| 373 | } |
| 374 | |
| 375 | TEST_F(TestFilterKernel, Temporal) { |
| 376 | this->TestNumericBasics(time32(TimeUnit::MILLI)); |
| 377 | this->TestNumericBasics(time64(TimeUnit::MICRO)); |
| 378 | this->TestNumericBasics(timestamp(TimeUnit::NANO, "Europe/Paris")); |
| 379 | this->TestNumericBasics(duration(TimeUnit::SECOND)); |
| 380 | this->TestNumericBasics(date32()); |
| 381 | this->AssertFilter(date64(), "[0, 86400000, null]", "[null, 1, 0]", "[null, 86400000]"); |
| 382 | } |
| 383 | |
| 384 | TEST_F(TestFilterKernel, Duration) { |
| 385 | for (auto type : DurationTypes()) { |
nothing calls this directly
no test coverage detected