(self)
| 93 | self.assert_compile(sql.true(), "1") |
| 94 | |
| 95 | def test_is_distinct_from(self): |
| 96 | self.assert_compile( |
| 97 | sql.column("x").is_distinct_from(None), "x IS NOT NULL" |
| 98 | ) |
| 99 | |
| 100 | self.assert_compile( |
| 101 | sql.column("x").is_not_distinct_from(False), "x IS 0" |
| 102 | ) |
| 103 | |
| 104 | def test_localtime(self): |
| 105 | self.assert_compile( |
nothing calls this directly
no test coverage detected