Skip to content

Commit e4d74c1

Browse files
committed
fix: make MAX_NAME_LENGTH pub to fix rustdoc private-intra-doc-links error
1 parent dfc421e commit e4d74c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/metadata_writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use crate::{DuckLakeError, Result};
77

88
/// Maximum allowed length for catalog entity names (schemas, tables, columns).
9-
const MAX_NAME_LENGTH: usize = 1024;
9+
pub const MAX_NAME_LENGTH: usize = 1024;
1010

1111
/// Validate a catalog entity name (schema, table, or column).
1212
///

0 commit comments

Comments
 (0)