(self)
| 2009 | ) |
| 2010 | |
| 2011 | def test_column_valued_one(self): |
| 2012 | fn = func.unnest(["one", "two", "three", "four"]).column_valued() |
| 2013 | |
| 2014 | stmt = select(fn) |
| 2015 | |
| 2016 | self.assert_compile( |
| 2017 | stmt, "SELECT anon_1 FROM unnest(:unnest_1) AS anon_1" |
| 2018 | ) |
| 2019 | |
| 2020 | def test_column_valued_two(self): |
| 2021 | """ |
nothing calls this directly
no test coverage detected