I have a AWS RDS MySQL 5.6.27 instance which was working perfectly fine. I did a alter on my table by executing this command.
ALTER TABLE images
CHANGE `created_timestamp` `created_timestamp` TIMESTAMP DEFAULT CURRENT_TIMESTAMP
After this I am unable to connect to this table at all. A select query on this table gives
Error 2013 Lost connection to mysql.
I was able to query other tables.
How can I make it to work like before?
Thanks in advance.