| 305 | } |
| 306 | |
| 307 | TEST_F(TestHashKernel, UniqueTimeTimestamp) { |
| 308 | CheckUnique<Time32Type, int32_t>(time32(TimeUnit::SECOND), {2, 1, 2, 1}, |
| 309 | {true, false, true, true}, {2, 0, 1}, {1, 0, 1}); |
| 310 | |
| 311 | CheckUnique<Time64Type, int64_t>(time64(TimeUnit::NANO), {2, 1, 2, 1}, |
| 312 | {true, false, true, true}, {2, 0, 1}, {1, 0, 1}); |
| 313 | |
| 314 | CheckUnique<TimestampType, int64_t>(timestamp(TimeUnit::NANO), {2, 1, 2, 1}, |
| 315 | {true, false, true, true}, {2, 0, 1}, {1, 0, 1}); |
| 316 | CheckUnique<DurationType, int64_t>(duration(TimeUnit::NANO), {2, 1, 2, 1}, |
| 317 | {true, false, true, true}, {2, 0, 1}, {1, 0, 1}); |
| 318 | } |
| 319 | |
| 320 | TEST_F(TestHashKernel, ValueCountsTimeTimestamp) { |
| 321 | CheckValueCounts<Time32Type, int32_t>(time32(TimeUnit::SECOND), {2, 1, 2, 1}, |
nothing calls this directly
no test coverage detected