pg_attrdef
pg_attrdef存储列的默认值。列的主要信息存储在pg_attribute。只有那些显式指定了一个默认值的列才会在这个目录中有一个项。
pg_attribute
表 53.6. pg_attrdef Columns
列类型
描述
oid oid
oid
行标识符
adrelid oid (references pg_class.oid)
adrelid
pg_class
该列所属的表
adnum int2 (references pg_attribute.attnum)
adnum
int2
attnum
列的编号
adbin pg_node_tree
adbin
pg_node_tree
列的默认值,以nodeToString()表示。用pg_get_expr(adbin, adrelid)将其转换为SQL表达式。
nodeToString()
pg_get_expr(adbin, adrelid)