Skip to content

Commit 21bbd83

Browse files
committed
refactor: remove share
1 parent edaf42d commit 21bbd83

File tree

88 files changed

+122
-9140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+122
-9140
lines changed

.github/actions/test_stateful_sharing/action.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/reuse.linux.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -181,20 +181,6 @@ jobs:
181181
with:
182182
name: test-stateful-standalone-linux
183183

184-
test_stateful_sharing:
185-
runs-on: [self-hosted, X64, Linux, 4c8g, "${{ inputs.runner_provider }}"]
186-
needs: [build, check]
187-
steps:
188-
- uses: actions/checkout@v4
189-
- uses: ./.github/actions/test_stateful_sharing
190-
if: env.BUILD_PROFILE == 'debug'
191-
timeout-minutes: 10
192-
- name: Upload failure
193-
if: failure()
194-
uses: ./.github/actions/artifact_failure
195-
with:
196-
name: test-stateful-sharing-linux
197-
198184
test_stateful_cluster:
199185
runs-on: [self-hosted, X64, Linux, 4c8g, "${{ inputs.runner_provider }}"]
200186
needs: [build, check]

Cargo.lock

Lines changed: 1 addition & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ members = [
6767
"src/query/storages/memory",
6868
"src/query/storages/null",
6969
"src/query/storages/random",
70-
"src/query/storages/share",
7170
"src/query/storages/stage",
7271
"src/query/storages/stream",
7372
"src/query/storages/system",

src/meta/api/src/lib.rs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ mod schema_api;
3030
mod schema_api_impl;
3131
mod schema_api_test_suite;
3232
mod sequence_api;
33-
mod share_api;
34-
mod share_api_impl;
35-
mod share_api_test_suite;
3633
pub(crate) mod testing;
3734
pub mod txn_backoff;
3835
pub(crate) mod util;
@@ -44,31 +41,17 @@ pub use background_api::BackgroundApi;
4441
pub use background_api_test_suite::BackgroundApiTestSuite;
4542
pub use data_mask_api::DatamaskApi;
4643
pub use schema_api::SchemaApi;
47-
pub(crate) use schema_api_impl::get_db_or_err;
4844
pub use schema_api_test_suite::SchemaApiTestSuite;
4945
pub use sequence_api::SequenceApi;
50-
pub use share_api::ShareApi;
51-
pub use share_api_test_suite::ShareApiTestSuite;
5246
pub use util::assert_table_exist;
53-
pub use util::convert_share_meta_to_spec;
5447
pub use util::db_has_to_exist;
5548
pub use util::deserialize_struct;
5649
pub use util::deserialize_u64;
5750
pub use util::fetch_id;
58-
pub use util::get_object_shared_by_share_ids;
5951
pub use util::get_pb_value;
60-
pub use util::get_share_account_meta_or_err;
61-
pub use util::get_share_database_id_and_privilege;
62-
pub use util::get_share_id_to_name_or_err;
63-
pub use util::get_share_meta_by_id_or_err;
64-
pub use util::get_share_or_err;
65-
pub use util::get_share_table_info;
6652
pub use util::get_u64_value;
67-
pub use util::is_all_db_data_removed;
68-
pub use util::is_db_need_to_be_remove;
6953
pub use util::list_keys;
7054
pub use util::list_u64_value;
71-
pub use util::remove_db_from_share;
7255
pub use util::send_txn;
7356
pub use util::serialize_struct;
7457
pub use util::serialize_u64;

0 commit comments

Comments
 (0)