ddl_historization
用SQL将所有DDL变更写入到数据库表中
	Module:
Categories:
扩展总览
PIGSTY 第三方扩展: ddl_historization : 用SQL将所有DDL变更写入到数据库表中
基本信息
- 扩展编号: 4310
 - 扩展名称: 
ddl_historization - 标准包名: 
ddl_historization - 扩展类目: 
UTIL - 开源协议: GPLv2
 - 官方网站: https://github.com/rodo/pg_ddl_historization
 - 编程语言: 纯SQL
 - 其他标签: 无
 - 备注信息: 无
 
元数据
- 默认版本: 0.0.7
 - PG大版本: 
17,16,15,14,13 - 动态加载: 无需动态加载
 - 需要DDL:  需要执行 
CREATE EXTENSIONDDL - 可重定位: 可以重定位安装至其他模式下
 - 信任程度: 未受信任,创建扩展需要超级用户权限
 - 所需模式: 无
 - 所需扩展: 
plpgsql 
软件包
- RPM仓库:PIGSTY
 - RPM包名:
ddl_historization_$v - RPM版本:
0.0.7 - RPM依赖:无
 - DEB仓库:PIGSTY
 - DEB包名:
postgresql-$v-ddl-historization - DEB版本:
0.0.7 - DEB依赖:无
 
最新版本
扩展安装
使用 pig 命令行工具安装 ddl_historization 扩展:
pig ext install ddl_historization
使用 Pigsty剧本 安装 ddl_historization 扩展:
./pgsql.yml -t pg_extension -e '{"pg_extensions": ["ddl_historization"]}' # -l <集群名>
从 YUM仓库 手工安装 ddl_historization RPM 包:
dnf install ddl_historization_17;
dnf install ddl_historization_16;
dnf install ddl_historization_15;
dnf install ddl_historization_14;
dnf install ddl_historization_13;
从 APT仓库 手工安装 ddl_historization DEB 包:
apt install postgresql-17-ddl-historization;
apt install postgresql-16-ddl-historization;
apt install postgresql-15-ddl-historization;
apt install postgresql-14-ddl-historization;
apt install postgresql-13-ddl-historization;
使用以下 SQL 命令在已经安装此扩展插件的 PG 集群上 启用 ddl_historization 扩展:
CREATE EXTENSION ddl_historization CASCADE;