Iuliia Volkova
Iuliia Volkova
@hubg398, thanks for opening the issue! I will try to take a look on it this week
@hubg398 I fixed case `integer_column__unique_key` INT NOT NULL AUTO_INCREMENT UNIQUE KEY, , but I cannot find docs for DB where AUTO_INCREMENT can be used with INDEX, can you give some...
I fixed the first case in PR https://github.com/xnuinside/simple-ddl-parser/pull/256 and released version 1.5.0
@hubg398 I think, I didn't add INDEX in column definition at all, I will add it, maybe today with patch release
@hubg398 INDEX support in column definition released in version 1.5.1 - https://github.com/xnuinside/simple-ddl-parser/pull/258. I just published release - https://pypi.org/project/simple-ddl-parser/. If will be needed anything else - feel free to open the...
@rayliverified @hubg398 working on it, will add in 1.6.2 version
UPD: released in version 1.7.0 https://pypi.org/project/simple-ddl-parser/1.7.0/ tests also added - https://github.com/xnuinside/simple-ddl-parser/pull/287/files#diff-c5dbbef7e9cbb2c64b384079070c3006398036d834774db5983a1e347b7747f8 if will be needed anything else - feel free to open new issue
@hubg398 thanks for opening new issues, I don’t have much time on this week, maybe I will have some hours on weekends
@dmaresma I think idea was if `create table` exists in same ddl script. In that case it is possible.
https://dev.mysql.com/doc/refman/8.0/en/create-table-like.html - we have support for 'LIKE' and 'CLONE' statements. I don't like idea to add SELECT - because it is part of DML, not DDL, but I will think...