()
| 1248 | |
| 1249 | |
| 1250 | def test_outer_join_id(): |
| 1251 | t1 = T( |
| 1252 | """ |
| 1253 | | a | b |
| 1254 | 1 | a1 | b1 |
| 1255 | 2 | a2 | b2 |
| 1256 | """ |
| 1257 | ) |
| 1258 | t2 = T( |
| 1259 | """ |
| 1260 | | c | d |
| 1261 | 1 | c1 | d1 |
| 1262 | 3 | c3 | d3 |
| 1263 | """ |
| 1264 | ) |
| 1265 | assert_table_equality( |
| 1266 | t1.join_outer(t2, t1.id == t2.id).select(id_col=pw.this.id), |
| 1267 | t1.join_outer(t2, t1.id == t2.id).select().select(id_col=pw.this.id), |
| 1268 | ) |
| 1269 | |
| 1270 | |
| 1271 | def test_outer_join_chaining_no_cond_leftsided(): |
nothing calls this directly
no test coverage detected