发布时间:2016-01-27 11:05:53
1. PostgreSQL 数据类型直接有3种转换,隐式转换,赋值转换,显式转换;对应的转换类型存在系统表 pg_cast中三种方式分别对应 i(Implicit),a(Assignment),e(Explicit)下面的语句可以查看所有转换:select castsource::regtype,casttarget::regtype,castcontext from pg_cast where castsource='text'::regtype;.........【阅读全文】
发布时间:2016-01-15 18:36:15
FDW Foreign Data Wrapper用于通过PG访问外部表1. 通过cretae server 关联 ip port dbname2. 通过cretae user mapping 关联 user password3. 通过 create foreign table 关联外部表在本地的映射,只保存元信息在本地,数据保存在远程表中4. 本地数据库到远程数据库的链接,就是通过server 和 user mapping 建立的,必.........【阅读全文】
发布时间:2015-05-01 16:54:17
PostgreSQL内存管理为描述方便,后文提到的PG都是指PostgreSQL数据库,本文将从以下方面介绍PG动态内存管理的实现:1. 前言 12. 内存上下文 13. AllocSet 34. AllocBlock 45. AllocChunk 56. 分配-palloc 57. 释放-pfree 121. .........【阅读全文】