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