Aurora MySQL 3 Online DDL 버그
·
MySQL
writer에서 in-place DDL 수행시 reader에서 해당 테이블을 인식하지 못하는 버그가 발견되었다. 관련 DDL: add column, drop column (offline ddl이나 instant ddl, add index는 해당 없음) 테스트 버전: Aurora MySQL 3.02.2 1. add column after # session 1(Writer) mysql> alter table test add col3 varchar(10) not null after col2; Query OK, 0 rows affected (7.35 sec) Records: 0 Duplicates: 0 Warinings: 0 # session 2(Writer)에서 processlist 확인 altering ta..