(self)
| 1861 | assert "a_q" not in s.c |
| 1862 | |
| 1863 | def test_union_uninit(self): |
| 1864 | a = table("a", column("x")) |
| 1865 | s1 = select(a) |
| 1866 | s2 = select(a) |
| 1867 | s3 = s1.union(s2) |
| 1868 | q = column("q") |
| 1869 | a.append_column(q) |
| 1870 | s3._refresh_for_new_column(q) |
| 1871 | assert a.c.q in s3.selected_columns.q.proxy_set |
| 1872 | |
| 1873 | def test_union_init(self): |
| 1874 | a = table("a", column("x")) |
nothing calls this directly
no test coverage detected