(self)
| 2211 | table1 = table("mytable", column("myid", Integer)) |
| 2212 | |
| 2213 | def test_is_distinct_from(self): |
| 2214 | self.assert_compile( |
| 2215 | self.table1.c.myid.is_distinct_from(1), |
| 2216 | "mytable.myid IS DISTINCT FROM :myid_1", |
| 2217 | ) |
| 2218 | |
| 2219 | def test_is_distinct_from_sqlite(self): |
| 2220 | self.assert_compile( |
nothing calls this directly
no test coverage detected