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