반응형
Warning Code : 1478InnoDB: ROW_FORMAT=DYNAMIC requires innodb_file_format > Antelope.InnoDB: assuming ROW_FORMAT=COMPACT.
오류시 다음과 같이 확인한다.
Before 5.7, table cannot be created Dynamic row-format with innodb_file_format= Antelope (Returns warning and table is created as Compact row-format)
5.7 can create Dynamic row-format table even innodb_file_format= Antelope, without any warnings and actually SHOW TABLE STATUS returns Row_format= Dynamic.
5.7's code checks innodb_file_format only when ROW_FORMAT= Compressed.
https://bugs.mysql.com/bug.php?id=83647
Mysql버전문제일 가능성도 있다
반응형
'데이터베이스 > MySql' 카테고리의 다른 글
특정 DB 테이블 찾기 (0) | 2022.06.13 |
---|---|
[Mysql] BLOB 자료형과 BLOB 추출하기 (0) | 2022.06.07 |
[MySql] 조인(Joins) 명령어 (0) | 2020.07.21 |
[MySql] Replication 오류 - 1062 (0) | 2020.07.20 |