| 1026 | } |
| 1027 | |
| 1028 | TEST_F(VectorTest, createInt) { |
| 1029 | testFlat<TypeKind::BIGINT>(BIGINT(), vectorSize_); |
| 1030 | testFlat<TypeKind::INTEGER>(INTEGER(), vectorSize_); |
| 1031 | testFlat<TypeKind::SMALLINT>(SMALLINT(), vectorSize_); |
| 1032 | testFlat<TypeKind::TINYINT>(TINYINT(), vectorSize_); |
| 1033 | } |
| 1034 | |
| 1035 | TEST_F(VectorTest, createDouble) { |
| 1036 | testFlat<TypeKind::REAL>(REAL(), vectorSize_); |
nothing calls this directly
no test coverage detected