You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/paimon/src/catalog/mod.rs
-7Lines changed: 0 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -35,23 +35,18 @@ pub use rest::*;
35
35
use serde::{Deserialize,Serialize};
36
36
37
37
/// Splitter for system table names (e.g. `table$snapshots`).
38
-
#[allow(dead_code)]
39
38
pubconstSYSTEM_TABLE_SPLITTER:&str = "$";
40
39
/// Prefix for branch in object name (e.g. `table$branch_foo`).
41
-
#[allow(dead_code)]
42
40
pubconstSYSTEM_BRANCH_PREFIX:&str = "branch_";
43
41
/// Default main branch name.
44
-
#[allow(dead_code)]
45
42
pubconstDEFAULT_MAIN_BRANCH:&str = "main";
46
43
/// Database value when the database is not known; [`Identifier::full_name`] returns only the object.
47
44
pubconstUNKNOWN_DATABASE:&str = "unknown";
48
45
/// Database property key for custom location. Not allowed for filesystem catalog.
49
46
/// See [Catalog.DB_LOCATION_PROP](https://github.com/apache/paimon/blob/release-1.3/paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java).
50
-
#[allow(dead_code)]// Public API - allow unused until used by external code
51
47
pubconstDB_LOCATION_PROP:&str = "location";
52
48
/// Suffix for database directory names in the filesystem (e.g. `mydb.db`).
53
49
/// See [Catalog.DB_SUFFIX](https://github.com/apache/paimon/blob/release-1.3/paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java).
54
-
#[allow(dead_code)]// Public API - allow unused until used by external code
/// Corresponds to [org.apache.paimon.catalog.Catalog](https://github.com/apache/paimon/blob/release-1.3/paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java).
0 commit comments