codecamp

PostgreSQL 源代码仓库

PostgreSQL源代码使用Git版本控制系统存储和管理。有一个主仓库的公共镜像可用,它每分钟都会根据主仓库的任何改变而更新。

我们的维基(https://wiki.postgresql.org/wiki/Working_with_Git)上有使用 Git 工作的一些讨论。

注意从源代码仓库编译PostgreSQL要求合理的最新版本的 bisonflexPerl。 在从一个发布的 tarball 中编译时不需要这些工具,因为它们需要去编译的文件已经被包括在 tarball 中。 其他工具要求和第 16 章中显示的一样。


PostgreSQL 扩展
PostgreSQL 通过Git得到源码
温馨提示
下载编程狮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; }