(self)
| 3954 | ) |
| 3955 | |
| 3956 | def test_plain_exists(self): |
| 3957 | expr = exists(text("1")) |
| 3958 | eq_(type(expr.type), Boolean) |
| 3959 | eq_( |
| 3960 | [ |
| 3961 | type(entry[-1]) |
| 3962 | for entry in select(expr).compile()._result_columns |
| 3963 | ], |
| 3964 | [Boolean], |
| 3965 | ) |
| 3966 | |
| 3967 | def test_plain_exists_negate(self): |
| 3968 | expr = ~exists(text("1")) |