risingwave_meta_model/
prelude.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
15pub use {Source as SourceModel, Table as TableModel};
16
17pub use super::actor::Entity as Actor;
18pub use super::catalog_version::Entity as CatalogVersion;
19pub use super::cluster::Entity as Cluster;
20pub use super::compaction_config::Entity as CompactionConfig;
21pub use super::compaction_status::Entity as CompactionStatus;
22pub use super::compaction_task::Entity as CompactionTask;
23pub use super::connection::Entity as Connection;
24pub use super::database::Entity as Database;
25pub use super::fragment::Entity as Fragment;
26pub use super::fragment_relation::Entity as FragmentRelation;
27pub use super::function::Entity as Function;
28pub use super::hummock_pinned_snapshot::Entity as HummockPinnedSnapshot;
29pub use super::hummock_pinned_version::Entity as HummockPinnedVersion;
30pub use super::hummock_sequence::Entity as HummockSequence;
31pub use super::hummock_version_delta::Entity as HummockVersionDelta;
32pub use super::hummock_version_stats::Entity as HummockVersionStats;
33pub use super::index::Entity as Index;
34pub use super::object::Entity as Object;
35pub use super::object_dependency::Entity as ObjectDependency;
36pub use super::schema::Entity as Schema;
37pub use super::secret::Entity as Secret;
38pub use super::session_parameter::Entity as SessionParameter;
39pub use super::sink::Entity as Sink;
40pub use super::source::Entity as Source;
41pub use super::streaming_job::Entity as StreamingJob;
42pub use super::subscription::Entity as Subscription;
43pub use super::system_parameter::Entity as SystemParameter;
44pub use super::table::Entity as Table;
45pub use super::user::Entity as User;
46pub use super::user_privilege::Entity as UserPrivilege;
47pub use super::view::Entity as View;
48pub use super::worker::Entity as Worker;
49pub use super::worker_property::Entity as WorkerProperty;