]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-sequence.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-sequence.txt
1
2 52.47. pg_sequence #
3
4    The catalog pg_sequence contains information about sequences. Some of
5    the information about sequences, such as the name and the schema, is in
6    pg_class
7
8    Table 52.47. pg_sequence Columns
9
10    Column Type
11
12    Description
13
14    seqrelid oid (references pg_class.oid)
15
16    The OID of the pg_class entry for this sequence
17
18    seqtypid oid (references pg_type.oid)
19
20    Data type of the sequence
21
22    seqstart int8
23
24    Start value of the sequence
25
26    seqincrement int8
27
28    Increment value of the sequence
29
30    seqmax int8
31
32    Maximum value of the sequence
33
34    seqmin int8
35
36    Minimum value of the sequence
37
38    seqcache int8
39
40    Cache size of the sequence
41
42    seqcycle bool
43
44    Whether the sequence cycles