Postgresql关于EOH的使用注意

注意通常拿到的指针不是EOH头

EOH是一种扩展数据结构,之前有几篇博客讨论过了,最近在改相关代码加深了一些理解。

EOH目前支持ER_methods、EA_methods两套实现,分别是record类型展开和数组类型展开。

在内存中的样子大概是(EA为例)

复制代码
typedef struct ExpandedArrayHeader
{
	ExpandedObjectHeader hdr;

	int			ea_magic;

	int			ndims;			/* # of dimensions */
	int		   *dims;			/* array dimensions */
	int		   *lbound;			/* index lower bounds for each dimension */

	Oid			element_type;	/* element type OID */
	int16		typlen;			/* needed info about element datatype */
	bool		typbyval;
	char		typalign;
	...
	...
	...
  • 注意:使用时传的不是指向EOH头部的指针,而是使用hdr->eoh_rw_ptr或hdr->eoh_ro_ptr中存放的指针(指向EOH头部)。
  • 注意eoh_rw_ptr和eoh_ro_ptr是1be结构,用DatumGetEOHP函数取出其中存放的指针。

使用时经常需要一层转换,例如这里:

注意使用value的逻辑一般都兼容EOH或valena结构

EOH使用EOH_flatten_into后会拉平数据,输出到result中紧凑存放。

一般的处理逻辑都可以适配EOH或这种紧凑形式,无需互相转换。

这就是为什么EOH只有flatten接口,没有生成EOH的接口,因为使用者适配了。

相关推荐
cherry52302 天前
【PostgreSQL】【第4章】PostgreSQL的事务
数据库·postgresql
库海无涯3 天前
如何把数据从SQLite迁移到PostgreSQL
数据库·postgresql·sqlite
cherry52303 天前
【PostgreSQL】【第3章】PostgreSQL的对象操作
数据库·postgresql
java_heartLake3 天前
PostgreSQL15深度解析(从15.0-15.12)
数据库·postgresql
不剪发的Tony老师4 天前
IvorySQL:兼容Oracle数据库的开源PostgreSQL
数据库·postgresql·oracle
博睿谷IT99_4 天前
数据库DBA认证,选哪个认证合适?
数据库·mysql·postgresql·dba·oracle ocp
gallonyin5 天前
postgresql 重置对应表序列最大值
数据库·postgresql
SeaTunnel5 天前
Apache SeaTunnel同步MySQL到Doris的优化策略
数据库·mysql·postgresql·apache
IvorySQL6 天前
IvorySQL 初始化(initdb)过程深度解析
数据库·postgresql·ivorysql
花千树-0106 天前
利用 Patroni + etcd + HAProxy 搭建高可用 PostgreSQL 集群
数据库·docker·postgresql·k8s·etcd