Hello,
We're running into a problem with case in the reflected column names
between mac and windows both using sqlalchemy 0.4.0. For example, in
our mysql database, we have a table with columns named END_YEAR and
DESCRIPTION. On a windows box:
['table.END_YEAR', 'table.DESCRIPTION']
On a mac:
['table.end_year', 'table.description']
This causes our code not to work cross-platform, as referencing
columns through table.c is case-sensitive. Obviously we could get
around this, but it seems to be a bug.
We're not sure if this is a sqlalchemy issue or a discrepancy in
MySQLdb between mac and windows versions. Does anyone have any insight
into the cause?
Thanks,
Travis