(t_1: pw.Table, t_2: pw.Table)
| 361 | a: int = pw.column_definition(primary_key=True) |
| 362 | |
| 363 | def logic(t_1: pw.Table, t_2: pw.Table) -> pw.Table: |
| 364 | t_2.promise_universe_is_subset_of(t_1) |
| 365 | return t_1.restrict(t_2) |
| 366 | |
| 367 | run, _, input_path_2 = get_two_tables_runner( |
| 368 | tmp_path, mode, logic, InputSchema, terminate_on_error=False |
no test coverage detected