热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

postgresqlpg_xlog_location_diff函数

pg_xlog_location_diff(,)这个函数还是比较有用的,在安装9.1时,没有创建,需要手动创建,最好创建在p

pg_xlog_location_diff('','') 这个函数还是比较有用的,在安装9.1时,没有创建,需要手动创建,最好创建在 postgres 数据库下的 public 下。



CREATE OR REPLACE FUNCTION public.pg_xlog_location_diff(text, text)

 RETURNS numeric
 LANGUAGE plpgsql
AS $function$
    DECLARE
       offset1 text;
       offset2 text;
       xlog1 text;
       xlog2 text;
       SQL   text;
       diff text;
    BEGIN
       /* Extract the Offset and xlog from input in
          offset and xlog variables */
           
       offset1=split_part($1,'/',2);
         xlog1=split_part($1,'/',1);
       offset2=split_part($2,'/',2);
         xlog2=split_part($2,'/',1);
        
       /* Prepare SQL query for calculation based on following formula
         (FF000000 * xlog + offset) - (FF000000 * xlog + offset)
         which gives value in hexadecimal. Since, hexadecimal calculation is cumbersome
         so convert into decimal and then calculate the difference */
        
       SQL='SELECT (x'''||'FF000000'||'''::bigint * x'''||xlog1||'''::bigint
                                +  x'''||offset1||'''::bigint)'||'
                -
                   (x'''||'FF000000'||'''::bigint * x'''||xlog2||'''::bigint
                                +  x'''||offset2||'''::bigint)';
       EXECUTE SQL into diff;
        
       /* Return the value in numeric by explicit casting  */
        
       RETURN diff::numeric;
    END;
 $function$;

转:https://www.cnblogs.com/ctypyb2002/p/9793148.html



推荐阅读
author-avatar
王琰杰昔凛
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有