(self)
| 2009 | ) |
| 2010 | |
| 2011 | def test_where_empty(self): |
| 2012 | self.assert_compile( |
| 2013 | select(table1.c.myid).where( |
| 2014 | BooleanClauseList._construct_raw(operators.and_) |
| 2015 | ), |
| 2016 | "SELECT mytable.myid FROM mytable", |
| 2017 | ) |
| 2018 | self.assert_compile( |
| 2019 | select(table1.c.myid).where( |
| 2020 | BooleanClauseList._construct_raw(operators.or_) |
| 2021 | ), |
| 2022 | "SELECT mytable.myid FROM mytable", |
| 2023 | ) |
| 2024 | |
| 2025 | def test_where_multiple(self): |
| 2026 | self.assert_compile( |
nothing calls this directly
no test coverage detected