catalog/system_schema/information_schema/
table_names.rs

1// Copyright 2023 Greptime Team
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
15//! All table names in `information_schema`.
16
17pub const TABLES: &str = "tables";
18pub const COLUMNS: &str = "columns";
19pub const ENGINES: &str = "engines";
20pub const COLUMN_PRIVILEGES: &str = "column_privileges";
21pub const COLUMN_STATISTICS: &str = "column_statistics";
22pub const BUILD_INFO: &str = "build_info";
23pub const CHARACTER_SETS: &str = "character_sets";
24pub const COLLATIONS: &str = "collations";
25pub const COLLATION_CHARACTER_SET_APPLICABILITY: &str = "collation_character_set_applicability";
26pub const CHECK_CONSTRAINTS: &str = "check_constraints";
27pub const EVENTS: &str = "events";
28pub const FILES: &str = "files";
29pub const SCHEMATA: &str = "schemata";
30pub const KEY_COLUMN_USAGE: &str = "key_column_usage";
31pub const OPTIMIZER_TRACE: &str = "optimizer_trace";
32pub const PARAMETERS: &str = "parameters";
33pub const PROFILING: &str = "profiling";
34pub const REFERENTIAL_CONSTRAINTS: &str = "referential_constraints";
35pub const ROUTINES: &str = "routines";
36pub const SCHEMA_PRIVILEGES: &str = "schema_privileges";
37pub const TABLE_PRIVILEGES: &str = "table_privileges";
38pub const TRIGGERS: &str = "triggers";
39pub const GLOBAL_STATUS: &str = "global_status";
40pub const SESSION_STATUS: &str = "session_status";
41pub const RUNTIME_METRICS: &str = "runtime_metrics";
42pub const PARTITIONS: &str = "partitions";
43pub const REGION_PEERS: &str = "region_peers";
44pub const TABLE_CONSTRAINTS: &str = "table_constraints";
45pub const CLUSTER_INFO: &str = "cluster_info";
46pub const VIEWS: &str = "views";
47pub const FLOWS: &str = "flows";
48pub const PROCEDURE_INFO: &str = "procedure_info";
49pub const REGION_STATISTICS: &str = "region_statistics";