(self)
| 3119 | ) |
| 3120 | |
| 3121 | async def test_sql_native_query_04(self): |
| 3122 | with self.assertRaisesRegex( |
| 3123 | edgedb.errors.QueryError, |
| 3124 | 'duplicate column name: `a`', |
| 3125 | _position=15, |
| 3126 | ): |
| 3127 | await self.assert_sql_query_result('SELECT 1 AS a, 2 AS a', []) |
| 3128 | |
| 3129 | async def test_sql_native_query_05(self): |
| 3130 | # `a` would be duplicated, |
nothing calls this directly
no test coverage detected