개발

MySQL | Error Parsing DDL | There was an error while parsing the DDL retrieved from the server

AM0530 2021. 2. 2. 11:20

1. 오류메세지 : There was an error while parsing the DDL retrieved from the server. 

Do you want to view the DDL or cancel processing it? 

테이블 정보 보려고 하면 오류메세지 팝업뜨고 오류발생한 쿼리 나타남 

 

2. 오류원인 : TABLE COMMENT에 특수 문자 '[ ]'를 입력한 게 원인이었다. 

TABLE은 정상적으로 만들어졌지만 TABLE을 조회시 COMMENT내용의 특수문자때문에 오류가 발생했다.

 

3. 해결방법 : 생성된 테이블의 COMMENT 변경 

(TABLE 코멘트 변경) 

ALTER TABLE 스키마.`TEST_TABLE` COMMENT='특수문자 없는 내용';