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