FAILED: ParseException line 6:163 cannot recognize input near 'map' ':' 'map' in column specification
如果hive建表里面字段類型是struct,里面嵌入了map:map<string,string>> 這種類型的數據,將map寫成`map`(map兩邊的引號在鍵盤Esc下面輸入),
例如`map`:map<string,string>> ,同理struc如果有_id:string,建表時報錯,可以寫成`_id`:string,其它的struct建表時報錯,
碰到類似的這樣問題,可以做如上的修改。