(
self, metadata, connection, implicit_returning
)
| 305 | argnames="implicit_returning", |
| 306 | ) |
| 307 | def test_lastrow_accessor_four_a( |
| 308 | self, metadata, connection, implicit_returning |
| 309 | ): |
| 310 | self._test_lastrow_accessor( |
| 311 | connection, |
| 312 | Table( |
| 313 | "t4", |
| 314 | metadata, |
| 315 | Column( |
| 316 | "id", |
| 317 | Integer, |
| 318 | normalize_sequence(config, Sequence("t4_id_seq")), |
| 319 | primary_key=True, |
| 320 | ), |
| 321 | Column("foo", String(30)), |
| 322 | implicit_returning=implicit_returning, |
| 323 | ), |
| 324 | {"foo": "hi"}, |
| 325 | {"id": 1, "foo": "hi"}, |
| 326 | ) |
| 327 | |
| 328 | @testing.combinations( |
| 329 | (True, testing.requires.insert_returning), |
nothing calls this directly
no test coverage detected