codecamp

PostgreSQL pg_replication_origin

pg_replication_origin目录包含所有已创建的复制源。更多复制源的信息请见第 49 章

和大部分系统目录不同,pg_replication_origin在一个集簇的所有数据库之间共享:每个集簇只有一份pg_replication_origin拷贝,而不是每个数据库一份。

表 51.42. pg_replication_origin Columns

列类型

描述

roident oid

一个集簇范围内唯一的复制源标识符。应该绝不会脱离系统。

roname text

外部的由用户定义的复制源名称。



PostgreSQL pg_range
PostgreSQL pg_rewrite
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PostgreSQL SQL语言

PostgreSQL 服务器管理

PostgreSQL 客户端接口

PostgreSQL 服务器编程

PostgreSQL 参考

PostgreSQL 内部

PostgreSQL 附录

PostgreSQL 参考书目

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }