Hi
When we try to create a new table with a column that has checked auto_increment but has not been set to be primary key, we get the Error popup saying
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') ) ENGINE = InnoDB' at line 1
preview sql shows the query formed as:
CREATE TABLE ffs
.memTable
( id
INT(11) NOT NULL AUTO_INCREMENT , PRIMARY KEY () ) ENGINE = InnoDB;
Fixed by https://github.com/phpmyadmin/phpmyadmin/pull/1362