关于CatalogPartitionSpec类的一些想法

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

关于CatalogPartitionSpec类的一些想法

Jun Zhang-2
大家好:
     我现在在使用flink中Catalog的查询分区的方法:Catalog#listPartitions(ObjectPath, CatalogPartitionSpec)的时候遇到一个问题。
&nbsp; &nbsp; 我发现CatalogPartitionSpec中存放分区信息的字partitionSpec类型是Map<String, String&gt;,

&nbsp; &nbsp; 这个对于hivecatalog是没有问题的,但是我这个Catalog的子类需要精准的类型,比如分区是int类型,传入一个 ”123“ 是不行的,
&nbsp; &nbsp; 所以我想flink的CatalogPartitionSpec的partitionSpec字段改为Map<String, Object&gt;类型是否会更加合理和通用呢?
&nbsp;
&nbsp; &nbsp;谢谢