1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
.. -*- coding: utf-8 -*-
.. :Project: pglast — DO NOT EDIT: generated automatically
.. :Author: Lele Gaifax <lele@metapensiero.it>
.. :License: GNU General Public License version 3 or later
.. :Copyright: © 2017-2025 Lele Gaifax
..
==========================================================================
:mod:`pglast.enums.pg_class` --- Constants extracted from `pg_class.h`__
==========================================================================
__ https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h
.. module:: pglast.enums.pg_class
:synopsis: Constants extracted from pg_class.h
.. data:: RELKIND_RELATION
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L164>`__.
.. data:: RELKIND_INDEX
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L165>`__.
.. data:: RELKIND_SEQUENCE
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L166>`__.
.. data:: RELKIND_TOASTVALUE
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L167>`__.
.. data:: RELKIND_VIEW
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L168>`__.
.. data:: RELKIND_MATVIEW
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L169>`__.
.. data:: RELKIND_COMPOSITE_TYPE
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L170>`__.
.. data:: RELKIND_FOREIGN_TABLE
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L171>`__.
.. data:: RELKIND_PARTITIONED_TABLE
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L172>`__.
.. data:: RELKIND_PARTITIONED_INDEX
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L173>`__.
.. data:: RELPERSISTENCE_PERMANENT
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L175>`__.
.. data:: RELPERSISTENCE_UNLOGGED
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L176>`__.
.. data:: RELPERSISTENCE_TEMP
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L177>`__.
.. data:: REPLICA_IDENTITY_DEFAULT
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L180>`__.
.. data:: REPLICA_IDENTITY_NOTHING
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L182>`__.
.. data:: REPLICA_IDENTITY_FULL
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L184>`__.
.. data:: REPLICA_IDENTITY_INDEX
See `here for details <https://github.com/pganalyze/libpg_query/blob/a192b38/src/postgres/include/catalog/pg_class.h#L190>`__.
|