| 480 | } |
| 481 | |
| 482 | TEST_F(DecodedVectorTest, flat) { |
| 483 | testFlat<int8_t>(); |
| 484 | testFlat<int16_t>(); |
| 485 | testFlat<int32_t>(); |
| 486 | testFlat<int64_t>(); |
| 487 | testFlat<bool>(); |
| 488 | testFlat<int64_t>(10010, DECIMAL(10, 4)); |
| 489 | testFlat<int128_t>(10010, DECIMAL(25, 19)); |
| 490 | // TODO: ValueGenerator doesn't support floats. |
| 491 | // testFlat<float>(); |
| 492 | testFlat<double>(); |
| 493 | |
| 494 | testFlat<StringView>(); |
| 495 | } |
| 496 | |
| 497 | namespace { |
| 498 | struct NonPOD { |
nothing calls this directly
no test coverage detected