codecamp

PostgreSQL pg_statistic_ext_data

目录pg_statistic_ext_data保存在pg_statistic_ext中定义的扩展规划器统计信息的数据。该目录的每一行对应用CREATE STATISTICS创建的一个 统计信息对象

就像pg_statisticpg_statistic_ext_data不应该被公众读取到,因为其内容可能被视为敏感内容。(例如:列中值的最常见组合可能非常令人关注。)pg_stats_extpg_statistic_ext_data上的公共可读视图(与pg_statistic_ext连接后),它仅暴露有关当前用户可读的表和列的信息。

表 51.51. pg_statistic_ext_data Columns

列类型

描述

stxoid oid (references pg_statistic_ext.oid)

包含此数据定义的扩展统计信息对象

stxdndistinct pg_ndistinct

N-distinct计数,序列化为pg_ndistinct类型

stxddependencies pg_dependencies

函数依赖统计信息,序列化为pg_dependencies类型

stxdmcv pg_mcv_list

MCV(最频值)列表统计信息,序列化为pg_mcv_list类型



PostgreSQL pg_statistic_ext
PostgreSQL pg_subscription
温馨提示
下载编程狮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; }