暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

HashFunc函数——getbucket(value,flag)

MTL 2022-10-14
205
  • getbucket(value,flag)

    描述:从分布列获取hashbucket桶。

    value为需要输入的数值,类型:

    “char”、abstime、bigint、boolean、bytea、character varying、character、date、double precision、int2vector、integer、interval、money、name、numeric、nvarchar、nvarchar2、oid、oidvector、raw、real、record、reltime、smalldatetime、smallint、text、time with time zone、time without time zone、timestamp with time zone、timestamp without time zone、tinyint、uuid

    flag表示数据分布方式,类型:integer

    返回值类型:integer

    示例:

    openGauss=# select getbucket(10,'H');
     getbucket 
    -----------
         14535
    (1 row)
        
    openGauss=# select getbucket(11,'H');
     getbucket 
    -----------
         13449
    (1 row)
        
    openGauss=# select getbucket(11,'R');
     getbucket 
    -----------
         13449
    (1 row)
        
    openGauss=# select getbucket(12,'R');
     getbucket 
    -----------
          9412
    (1 row)
        
最后修改时间:2022-10-14 11:21:54
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论