(
self, metadata, connection, implicit_returning
)
| 252 | argnames="implicit_returning", |
| 253 | ) |
| 254 | def test_lastrow_accessor_three( |
| 255 | self, metadata, connection, implicit_returning |
| 256 | ): |
| 257 | self._test_lastrow_accessor( |
| 258 | connection, |
| 259 | Table( |
| 260 | "t3", |
| 261 | metadata, |
| 262 | Column("id", String(40), primary_key=True), |
| 263 | Column("foo", String(30), primary_key=True), |
| 264 | Column("bar", String(30)), |
| 265 | implicit_returning=implicit_returning, |
| 266 | ), |
| 267 | {"id": "hi", "foo": "thisisfoo", "bar": "thisisbar"}, |
| 268 | {"id": "hi", "foo": "thisisfoo", "bar": "thisisbar"}, |
| 269 | ) |
| 270 | |
| 271 | @testing.requires.sequences |
| 272 | @testing.combinations( |
nothing calls this directly
no test coverage detected