risingwave_frontend/catalog/system_catalog/pg_catalog/
mod.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15mod pg_am;
16mod pg_attrdef;
17mod pg_attribute;
18mod pg_auth_members;
19mod pg_cast;
20mod pg_class;
21mod pg_collation;
22mod pg_constraint;
23mod pg_conversion;
24mod pg_database;
25mod pg_depend;
26mod pg_description;
27mod pg_enum;
28mod pg_extension;
29mod pg_index;
30mod pg_indexes;
31mod pg_inherits;
32mod pg_language;
33mod pg_locks;
34mod pg_matviews;
35mod pg_namespace;
36mod pg_opclass;
37mod pg_operator;
38mod pg_partitioned_table;
39mod pg_proc;
40mod pg_range;
41mod pg_rewrite;
42mod pg_roles;
43mod pg_sequence;
44mod pg_sequences;
45mod pg_settings;
46mod pg_shadow;
47mod pg_shdescription;
48mod pg_stat_activity;
49mod pg_stat_user_tables;
50mod pg_tables;
51mod pg_tablespace;
52mod pg_trigger;
53mod pg_type;
54mod pg_user;
55mod pg_views;