(
engine, schema_name, table_names, timing, mode, ignore_diff
)
| 323 | |
| 324 | @define_test |
| 325 | def reflect_check_constraints( |
| 326 | engine, schema_name, table_names, timing, mode, ignore_diff |
| 327 | ): |
| 328 | multi, single = _single_test( |
| 329 | "get_check_constraints", |
| 330 | "get_multi_check_constraints", |
| 331 | engine, |
| 332 | schema_name, |
| 333 | table_names, |
| 334 | timing, |
| 335 | mode, |
| 336 | ) |
| 337 | if not ignore_diff: |
| 338 | verify_dict(multi, single) |
| 339 | |
| 340 | |
| 341 | @define_test |
nothing calls this directly
no test coverage detected