(self, t_fixture, any_all_operators)
| 4941 | ) |
| 4942 | |
| 4943 | def test_scalar_values(self, t_fixture, any_all_operators): |
| 4944 | t = t_fixture |
| 4945 | op, fn = any_all_operators |
| 4946 | |
| 4947 | self.assert_compile( |
| 4948 | 5 == fn(values(t.c.data).data([(1,), (42,)]).scalar_values()), |
| 4949 | f":param_1 = {op} (VALUES (:param_2), (:param_3))", |
| 4950 | checkparams={"param_1": 5, "param_2": 1, "param_3": 42}, |
| 4951 | ) |
| 4952 | |
| 4953 | @testing.combinations(any_, all_, argnames="fn") |
| 4954 | def test_values_illegal(self, t_fixture, fn): |
nothing calls this directly
no test coverage detected