error on mysql dialect base.py in latest trunk (on date of this ticket)

Issue #1580 resolved
Former user created an issue

file : lib\sqlalchemy\dialects\mysql\base.py function _adjust_casing line 1949 - lc_alias = schema._get_table_key(table.name, table.schema) It launches a "can't find global 'schema'..." exception

Higher in the file there's a from sqlalchemy import schema as sa_schema

Shouldn't the line be lc_alias = sa_schema._get_table_key(table.name, table.schema) ???

Best regards,

Comments (2)

  1. Log in to comment