|
248 | 248 | <entry>security labels on database objects</entry>
|
249 | 249 | </row>
|
250 | 250 |
|
| 251 | + <row> |
| 252 | + <entry><link linkend="catalog-pg-seqam"><structname>pg_seqam</structname></link></entry> |
| 253 | + <entry>sequence access methods</entry> |
| 254 | + </row> |
| 255 | + |
251 | 256 | <row>
|
252 | 257 | <entry><link linkend="catalog-pg-shdepend"><structname>pg_shdepend</structname></link></entry>
|
253 | 258 | <entry>dependencies on shared objects</entry>
|
|
5536 | 5541 | </table>
|
5537 | 5542 | </sect1>
|
5538 | 5543 |
|
| 5544 | + <sect1 id="catalog-pg-seqam"> |
| 5545 | + <title><structname>pg_seqam</structname></title> |
| 5546 | + |
| 5547 | + <indexterm zone="catalog-pg-seqam"> |
| 5548 | + <primary>pg_seqam</primary> |
| 5549 | + </indexterm> |
| 5550 | + |
| 5551 | + <para> |
| 5552 | + The catalog <structname>pg_seqam</structname> stores information about |
| 5553 | + sequence access methods. There is one row for each sequence access method |
| 5554 | + installed on the system. |
| 5555 | + </para> |
| 5556 | + |
| 5557 | + <table> |
| 5558 | + <title><structname>pg_seqam</> Columns</title> |
| 5559 | + |
| 5560 | + <tgroup cols="4"> |
| 5561 | + <thead> |
| 5562 | + <row> |
| 5563 | + <entry>Name</entry> |
| 5564 | + <entry>Type</entry> |
| 5565 | + <entry>References</entry> |
| 5566 | + <entry>Description</entry> |
| 5567 | + </row> |
| 5568 | + </thead> |
| 5569 | + <tbody> |
| 5570 | + |
| 5571 | + <row> |
| 5572 | + <entry><structfield>oid</structfield></entry> |
| 5573 | + <entry><type>oid</type></entry> |
| 5574 | + <entry></entry> |
| 5575 | + <entry>Row identifier (hidden attribute; must be explicitly selected)</entry> |
| 5576 | + </row> |
| 5577 | + |
| 5578 | + <row> |
| 5579 | + <entry><structfield>seqamname</structfield></entry> |
| 5580 | + <entry><type>name</type></entry> |
| 5581 | + <entry></entry> |
| 5582 | + <entry>Name of the access method</entry> |
| 5583 | + </row> |
| 5584 | + |
| 5585 | + <row> |
| 5586 | + <entry><structfield>seqamreloptions</structfield></entry> |
| 5587 | + <entry><type>regproc</type></entry> |
| 5588 | + <entry><literal><link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.oid</literal></entry> |
| 5589 | + <entry>Function to parse and validate <structfield>reloptions</> for the access method</entry> |
| 5590 | + </row> |
| 5591 | + |
| 5592 | + <row> |
| 5593 | + <entry><structfield>seqaminit</structfield></entry> |
| 5594 | + <entry><type>regproc</type></entry> |
| 5595 | + <entry><literal><link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.oid</literal></entry> |
| 5596 | + <entry>Function called during initialization or <command>RESET</command> of a sequence</entry> |
| 5597 | + </row> |
| 5598 | + |
| 5599 | + <row> |
| 5600 | + <entry><structfield>seqamalloc</structfield></entry> |
| 5601 | + <entry><type>regproc</type></entry> |
| 5602 | + <entry><literal><link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.oid</literal></entry> |
| 5603 | + <entry><quote>Allocate new sequence id</quote> function</entry> |
| 5604 | + </row> |
| 5605 | + |
| 5606 | + <row> |
| 5607 | + <entry><structfield>seqamsetval</structfield></entry> |
| 5608 | + <entry><type>regproc</type></entry> |
| 5609 | + <entry><literal><link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.oid</literal></entry> |
| 5610 | + <entry>Function implementing <function>setval()</function> interface</entry> |
| 5611 | + </row> |
| 5612 | + |
| 5613 | + <row> |
| 5614 | + <entry><structfield>seqamgetstate</structfield></entry> |
| 5615 | + <entry><type>regproc</type></entry> |
| 5616 | + <entry><literal><link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.oid</literal></entry> |
| 5617 | + <entry>Function to dump current state of a sequence (used mainly by pg_dump)</entry> |
| 5618 | + </row> |
| 5619 | + |
| 5620 | + <row> |
| 5621 | + <entry><structfield>seqamsetstate</structfield></entry> |
| 5622 | + <entry><type>regproc</type></entry> |
| 5623 | + <entry><literal><link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.oid</literal></entry> |
| 5624 | + <entry>Function to restore a dumped state of a sequence (used mainly by pg_dump)</entry> |
| 5625 | + </row> |
| 5626 | + |
| 5627 | + </tbody> |
| 5628 | + </tgroup> |
| 5629 | + </table> |
| 5630 | + |
| 5631 | + </sect1> |
| 5632 | + |
5539 | 5633 | <sect1 id="catalog-pg-shdepend">
|
5540 | 5634 | <title><structname>pg_shdepend</structname></title>
|
5541 | 5635 |
|
|
0 commit comments