필드명과 주석에 쓰이는 문자열을 표시하는 기호가 다르다.
필드명은 `로 사용하고, 주석은 '로 사용한다.
hive> ALTER TABLE users ADD COLUMNS (`json` string, `timezone` string COMMENT `timezone of user`);
mismatched input 'timezone of user' expecting StringLiteral near 'COMMENT' in column specification
hive> ALTER TABLE users ADD COLUMNS (`json` string, `timezone` string COMMENT 'timezone of user');
OK
'hadoop' 카테고리의 다른 글
[hive] group by 이후에 order by 개수 지정하기 (0) | 2016.04.19 |
---|---|
[hive] ALTER TABLE 예시 (0) | 2016.04.19 |
[hive] hive.cli.print.header (0) | 2016.04.19 |
[hive] 데이터 타입에 맞게 구분자 활용하여 테이블 저장하기 (0) | 2016.04.19 |
brew를 이용해서 hadoop, hive 설치하기 (0) | 2016.04.19 |