]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- a CREATE TABLE will put the COLLATE option
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Oct 2011 19:19:07 +0000 (15:19 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Oct 2011 19:19:07 +0000 (15:19 -0400)
commita9ebba3e1b135f1b5ac612844dce1e34e4d0eeee
tree58e531203d593b809528db53ce362c78862b8430
parentbf2f3595d07002d56c77b329387932d4d27e3c45
  - a CREATE TABLE will put the COLLATE option
    after CHARSET, which appears to be part of
    MySQL's arbitrary rules regarding if it will actually
    work or not.  [ticket:2225]

  - reflecting a MySQL table will ensure that the
    options added to the Table at the table.kwargs
    level have spaces converted to underscores.
    This is a slight behavioral change specifically
    to the "mysql_default_charset" option which
    previously would not be symmetrical.
CHANGES
lib/sqlalchemy/dialects/mysql/base.py
test/dialect/test_mysql.py