aws athena:如何使列需要过滤器

时间:2020-08-12 12:35:30

标签: amazon-web-services amazon-athena information-schema

当我在表“ information_schema .__ internal_partitions__”上进行查询时,收到以下错误消息:GENERIC_INTERNAL_ERROR:列:information_schema .__ internal_partitions __需要过滤器。 table_schema

是否可以在要创建的表中的列上添加相同的条件

tnx

3 个答案:

答案 0 :(得分:0)

根据PrestoDB GitHub(雅典娜背后的后端数据库),仅当您尝试查询table_schema或table_name时,才会显示此错误。

答案 1 :(得分:0)

由于错误表明您无法查询整个表。您需要在table_schema列上应用过滤器,如下例所示:

SELECT *
FROM   information_schema.__internal_partitions__
WHERE  table_schema = 'default'
       AND table_name = 'cloudtrail_logs_test2'
ORDER  BY partition_number

有关此示例的更多示例,请参见this文档。

答案 2 :(得分:0)

我的问题是:我可以在要创建的另一个表的列中添加约束吗?

例如,如果我有一个带有列C1,C2和C3的表T1。 除非C3上有条件,否则我不允许任何“选择”。