(self)
| 2044 | table1 = table("mytable", column("myid", Integer)) |
| 2045 | |
| 2046 | def test_is_distinct_from(self): |
| 2047 | self.assert_compile( |
| 2048 | self.table1.c.myid.is_distinct_from(1), |
| 2049 | "mytable.myid IS DISTINCT FROM :myid_1", |
| 2050 | ) |
| 2051 | |
| 2052 | def test_is_distinct_from_sqlite(self): |
| 2053 | self.assert_compile( |
nothing calls this directly
no test coverage detected