Hive ParseException - cannot recognize input near 'end' 'string'

后端 未结 4 1199
终归单人心
终归单人心 2021-02-14 02:41

I am getting the following error when trying to create a Hive table from an existing DynamoDB table:

NoViableAltException(88@[])
at org.apache.hadoop.hive.ql.par         


        
4条回答
  •  伪装坚强ぢ
    2021-02-14 03:35

    I solved this issue by doing like that:

    insert into my_table(my_field_0, ..., my_field_n) values(my_value_0, ..., my_value_n)

提交回复
热议问题