| 59 | }; |
| 60 | |
| 61 | TEST_F(ExprValidatorTest, SingleNumericColumn_Valid) { |
| 62 | auto result = ParseAndValidate("int32_col", schema_); |
| 63 | EXPECT_TRUE(result.ok()) << result.status().ToString(); |
| 64 | |
| 65 | result = ParseAndValidate("double_col", schema_); |
| 66 | EXPECT_TRUE(result.ok()) << result.status().ToString(); |
| 67 | } |
| 68 | |
| 69 | TEST_F(ExprValidatorTest, UnaryPositive_Supported) { |
| 70 | auto result = ParseAndValidate("+int32_col", schema_); |
nothing calls this directly
no test coverage detected