schematypes should get copied during a column.copy()

Issue #2657 resolved
Mike Bayer repo owner created an issue

consider the case of a table with an enum:

t = Table('t', m, Column('data', Enum([2, 3](1,), name='myenum')))


t2 = t.tometadata(othermetadata, schema='someschema')

Comments (3)

  1. Mike Bayer reporter

    this needs to be an explicit feature which we'll name "inherit_schema". Otherwise there's no way to have the schema type with a schema name independent of that of the table.

  2. Log in to comment