PostgreSQL程序版本號的做用

​不少人查看過程序的版本號:函數

quanzl-mac:bin quanzl$ ./postgres -V
postgres (PostgreSQL) 11beta2
quanzl-mac:bin quanzl$ ./initdb -V
initdb (PostgreSQL) 11beta2
quanzl-mac:bin quanzl$

彷佛這些也就是給咱們看看,沒有其餘用處,其實並不是如此。post

 

一、把initdb 放到其餘版本bin目錄下試試看(別忘記備份,嘗試完以後別忘記恢復原狀):學習

quanzl-mac:bin quanzl$ ./initdb -D ../data
The program "postgres" was found by "/Users/quanzl/build/flyingdb-v10bin/bin/initdb"
but was not the same version as initdb.
Check your installation.
quanzl-mac:bin quanzl$

很清楚的錯誤提示,initdb和postgres版本不一致。ui

 

二、如何根據錯誤提示定位代碼位置spa

遇到錯誤信息時,若是對代碼不夠熟悉,怎麼知道哪段代碼在報錯呢?就像上邊的例子,能夠在代碼中搜索「but was not the same version」,或者 「The program \"postgres\" was found by」,能夠很快定位。若是不明白後者爲何這麼搜,須要補一下C語言基礎,這種格式的字符串若是搜不到那麼應該試試搜索 「The program \"%s\" was found by」。code

搜後者能夠看到還有其餘幾個程序在作一樣的檢查:pg_ctl、pg_dumpall、pg_rewind。ip


三、initdb字符串

來看initdb的報錯部分get

if ((ret = find_other_exec(argv0, "postgres", PG_BACKEND_VERSIONSTR,
   backend_exec)) < 0)
{

當返回值小於0時進入錯誤處理。cmd

find_other_exec 的幾個參數:變量 argv0 的值是 "initdb"、常量 "postgres"、常量 PG_BACKEND_VERSIONSTR定義是:

#define PG_BACKEND_VERSIONSTR "postgres (PostgreSQL) " PG_VERSION "\n"

而最後一個參數 backend_exec 將在 find_other_exec 函數內賦值。

 

四、函數 find_other_exec

int
find_other_exec(const char *argv0, const char *target,
const char *versionstr, char *retpath)

在上邊的例子裏,它接收到的前三個字符串參數分別是:"initdb"、"postgres"、"postgres (PostgreSQL)  11beta2\n"

首先找initdb所在目錄,確認 target 也就是 postgres 是否存在,權限夠不夠,一切正常就執行 postgres[.exe] -V

snprintf(cmd, sizeof(cmd), "\"%s\" -V", retpath);

if (!pipe_read_line(cmd, line, sizeof(line)))
return -1;

比較其輸出是否是與 "postgres (PostgreSQL)  11beta2\n" 相同:

if (strcmp(line, versionstr) != 0)
return -2;

 

五、其餘程序

像 pg_ctl,過程相似,有興趣本身讀一讀。

若是想學習怎樣改PG代碼,不妨動手試一下,只看別人怎麼改是很難有提升的。

 

歡迎關注個人公衆號,同步發佈

相關文章
相關標籤/搜索