如何描述与Hive关键字同名的Hive表?

时间:2014-02-14 20:14:10

标签: hadoop hive

我遇到了一个名为“comment”的Hive表。当我尝试describe comment;时 我收到这个错误:

FAILED: ParseException line 1:0 cannot recognize input near 'describe' 'comment' '<EOF>' in describe statement

我也尝试过:

describe `comment`;
describe `db_name.comment`;
describe db_name.`comment`;
describe 'comment';
etc.

但我不断收到上述错误或“表...不存在”错误。我查看了Hive DDL Language Manual,但无法弄清楚如何描述表格。

2 个答案:

答案 0 :(得分:0)

它应该工作。必须有其他东西导致这一点。我在我的机器上试过这个并且工作正常。最有可能的是,您创建了具有其他名称的表。当您执行显示表格时,Hive会显示什么?

enter image description here

答案 1 :(得分:0)

我使用的是Hive 0.12,但该错误已在Hive 0.14中修复。有关详细信息,请参阅https://issues.apache.org/jira/browse/HIVE-6187