(self)
| 272 | ) |
| 273 | |
| 274 | async def test_sql_dml_insert_11(self): |
| 275 | await self.scon.execute( |
| 276 | ''' |
| 277 | WITH a AS ( |
| 278 | INSERT INTO "Document" (title) VALUES ('Report') |
| 279 | ) |
| 280 | INSERT INTO "Document" (title) VALUES ('Briefing') |
| 281 | ''' |
| 282 | ) |
| 283 | res = await self.squery_values('SELECT title FROM "Document"') |
| 284 | self.assert_data_shape( |
| 285 | res, tb.bag([['Report (new)'], ['Briefing (new)']]) |
| 286 | ) |
| 287 | |
| 288 | async def test_sql_dml_insert_12(self): |
| 289 | # returning |
nothing calls this directly
no test coverage detected