()
| 4223 | |
| 4224 | |
| 4225 | def test_this_magic_4(): |
| 4226 | tab = T( |
| 4227 | """ |
| 4228 | | a | b | c | d |
| 4229 | 1 | 1 | 2 | 3 | 4 |
| 4230 | """ |
| 4231 | ) |
| 4232 | |
| 4233 | left = tab.select(*pw.this[["a", "b", pw.this.c]].without(pw.this.a)) |
| 4234 | |
| 4235 | right = tab.select(tab.b, tab.c) |
| 4236 | |
| 4237 | assert_table_equality(left, right) |
| 4238 | |
| 4239 | |
| 4240 | def test_join_this(): |