- Add support for database names (contributed by @jgysland).
- Add explicit support for MySQL identifiers.
- Add support for basic
CREATE TABLEstatements. - (Insert new release notes below this line)
- Add support for
ALTER TABLE .. CHANGE COLUMNstatements (contributed by @jgysland)
- Change the licence from
AGPLv3toMITlicence.
- Brought back
HISTORY.rst. - Add
mysqlparse.parsefunction. - Add
sixas a dependency to make writing Py2 and Py3 compatible code easier. - Add support for
ALTER TABLE .. MODIFY [COLUMN]statements. - Add support for
ALTER TABLE .. DROP *statements. - Move version string from
setup.pyintomysqlparse.
- Updated
README.rst. - Add support for
ALTER TABLE ... ADD INDEXstatements.
- A little tidy up.
- Removed
defaultValueparse action. - Improved
NULLhandling. - Updated tests to pass.
- Fixed packaging configuration.
- First release with code parsing some of
ALTER TABLE ... ADD COLUMNstatements.