mysql_length doesn't work for composites

Issue #2704 resolved
Mike Bayer repo owner created an issue

current API:

Index('my_index', my_table.c.data, mysql_length=10)

extend it so that columns can be passed as a dict:

Index('my_index', my_table.c.a, my_table.c.b, mysql_length={"a": 10, "b": 20})

Comments (2)

  1. Log in to comment