您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“PostgreSQL系統(tǒng)表及其TOAST是怎么定義的”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“PostgreSQL系統(tǒng)表及其TOAST是怎么定義的”吧!
本文只是講PG怎樣定義系統(tǒng)表,而不是修改系統(tǒng)表甚至是定義自己的系統(tǒng)表。
PG系統(tǒng)表,比如:pg_class、pg_attribute、pg_type 等等
這幾個表相互關(guān)聯(lián),后兩者要在pg_class記錄自己的表定義,而pg_class又需要在后兩者記錄自己的字段和類型,看起來是個死扣。
關(guān)于它們怎么定義,有興趣可以閱讀:
System Catalog Declarations and Initial Contents
比以前的文檔更加細致和明確,dat文件的定義方式也比以前更清晰。
1、系統(tǒng)表數(shù)據(jù)結(jié)構(gòu)定義,打開 pg_class.h
CATALOG(pg_class,1259,RelationRelationId) BKI_BOOTSTRAP BKI_ROWTYPE_OID(83,RelationRelation_Rowtype_Id) BKI_SCHEMA_MACRO { NameData relname; /* class name */ Oid relnamespace; /* OID of namespace containing this class */ Oid reltype; /* OID of entry in pg_type for table's * implicit row type */ Oid reloftype; /* OID of entry in pg_type for underlying * composite type */ ...
pg_class 表結(jié)構(gòu)
flying=# \d pg_class Table "pg_catalog.pg_class" Column | Type | Collation | Nullable | Default ---------------------+--------------+-----------+----------+--------- relname | name | | not null | relnamespace | oid | | not null | reltype | oid | | not null | reloftype | oid | | not null | ...
是不是一一對應,事實上建表腳本就是由這里抽取生成,所以它們才如此一致。
2、src/backend/catalog/genbki.pl腳本
這個Perl腳本負責抽取定義并生成postgres.bki,有興趣可以結(jié)合上邊的文檔理解它。
BKI腳本由一個單獨的語法引擎支持,不是我們常說的SQL,它在bootstrap下,有興趣可以自己看,以后有機會再講。
3、代碼
我們這里只是看看PG怎么做,并不是修改,每個定義都有其相應代碼,它們在commands和catalog下。
后邊我會單獨寫一篇如何新增自己的系統(tǒng)字段。
4、TOAST表
像text類型的字段需要toast存儲,系統(tǒng)表的OID都是預置并且不允許修改,所以它們的TOAST同樣需要預設(shè)。
來看 src/include/catalog/toasting.h,以 pg_proc為例:
DECLARE_TOAST(pg_proc, 2836, 2837);
這個preprocessor是這樣定義的:
#define DECLARE_TOAST(name,toastoid,indexoid) extern int no_such_variable
看起來毫無意義對吧,其實它并不是真的給PG代碼用,而是genbki,看過代碼就知道怎么回事。
5、索引
系統(tǒng)表也是需要索引的,定義在 src/include/catalog/indexing.h,還是以 pg_proc為例:
DECLARE_UNIQUE_INDEX(pg_proc_oid_index, 2690, on pg_proc using btree(oid oid_ops)); #define ProcedureOidIndexId 2690 DECLARE_UNIQUE_INDEX(pg_proc_proname_args_nsp_index, 2691, on pg_proc using btree(proname name_ops, proargtypes oidvector_ops, pronamespace oid_ops)); #define ProcedureNameArgsNspIndexId 2691
它有兩個索引,上邊的定義包括:名字、OID、am、字段。
這些預處理符同樣不是給C代碼準備的,只有g(shù)enbki用得上。
6、初始數(shù)據(jù)
它們定義在同名的dat文件里,比如 pg_proc.dat。
7、字段可選值
這個并不算表定義,但也是放在一起的,比如pg_proc的provolatile只允許:
#define PROVOLATILE_IMMUTABLE 'i' /* never changes for given input */ #define PROVOLATILE_STABLE 's' /* does not change within a scan */ #define PROVOLATILE_VOLATILE 'v' /* can change even within a scan */
到此,相信大家對“PostgreSQL系統(tǒng)表及其TOAST是怎么定義的”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。