(self)
| 3183 | ) |
| 3184 | |
| 3185 | async def test_sql_native_query_09(self): |
| 3186 | await self.assert_sql_query_result( |
| 3187 | ''' |
| 3188 | WITH |
| 3189 | x(a) AS (VALUES (1 + 1)) |
| 3190 | SELECT 1 as a, * FROM x |
| 3191 | ''', |
| 3192 | [{'a': 1, 'x_a': 2}], |
| 3193 | ) |
| 3194 | |
| 3195 | async def test_sql_native_query_10(self): |
| 3196 | await self.assert_sql_query_result( |
nothing calls this directly
no test coverage detected