MCPcopy
hub / github.com/geldata/gel / test_sql_native_query_09

Method test_sql_native_query_09

tests/test_sql_query.py:3185–3193  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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(

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected