(self)
| 3967 | ) |
| 3968 | |
| 3969 | def test_plain_exists(self): |
| 3970 | expr = exists(text("1")) |
| 3971 | eq_(type(expr.type), Boolean) |
| 3972 | eq_( |
| 3973 | [ |
| 3974 | type(entry[-1]) |
| 3975 | for entry in select(expr).compile()._result_columns |
| 3976 | ], |
| 3977 | [Boolean], |
| 3978 | ) |
| 3979 | |
| 3980 | def test_plain_exists_negate(self): |
| 3981 | expr = ~exists(text("1")) |