pg_sequence
目录pg_sequence包含有关序列的信息。 一些序列的信息(例如名称和方案)放在pg_class中。
pg_class
Table 50.57. pg_sequence Columns
列类型
描述
seqrelid oid (references pg_class.oid)
seqrelid
oid
这个序列的pg_class项的OID
seqtypid oid (references pg_type.oid)
seqtypid
pg_type
序列的数据类型
seqstart int8
seqstart
int8
序列的起始值
seqincrement int8
seqincrement
序列的增量值
seqmax int8
seqmax
序列的最大值
seqmin int8
seqmin
序列的最小值
seqcache int8
seqcache
序列的缓冲尺寸
seqcycle bool
seqcycle
bool
序列是否循环