| 159 | }; |
| 160 | |
| 161 | TEST_F(EvalSimplifiedTest, constantOnly) { |
| 162 | runTest("1 + 3 * 2 + 10 * 2"); |
| 163 | } |
| 164 | |
| 165 | TEST_F(EvalSimplifiedTest, constantAndInput) { |
| 166 | runTest("1 + c0 - 2 + c0", ROW({"c0"}, {BIGINT()})); |
nothing calls this directly
no test coverage detected