(element, compiler, **kw)
| 154 | |
| 155 | @compiles(InsertFromSelect) |
| 156 | def visit_insert_from_select(element, compiler, **kw): |
| 157 | return "INSERT INTO %s (%s)" % ( |
| 158 | compiler.process(element.table, asfrom=True), |
| 159 | compiler.process(element.select), |
| 160 | ) |
| 161 | |
| 162 | t1 = table("mytable", column("x"), column("y"), column("z")) |
| 163 | self.assert_compile( |