Skip to content

Commit

Permalink
chore: reduce some operations module functions to crate level visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Aug 30, 2024
1 parent 066b3b3 commit 452f8a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/src/operations/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ impl AsRef<DeltaTable> for DeltaOps {
/// Get the num_idx_columns and stats_columns from the table configuration in the state
/// If table_config does not exist (only can occur in the first write action) it takes
/// the configuration that was passed to the writerBuilder.
pub fn get_num_idx_cols_and_stats_columns(
pub(crate) fn get_num_idx_cols_and_stats_columns(
config: Option<crate::table::config::TableConfig<'_>>,
configuration: HashMap<String, Option<String>>,
) -> (i32, Option<Vec<String>>) {
Expand All @@ -286,7 +286,7 @@ pub fn get_num_idx_cols_and_stats_columns(
/// Get the target_file_size from the table configuration in the sates
/// If table_config does not exist (only can occur in the first write action) it takes
/// the configuration that was passed to the writerBuilder.
pub fn get_target_file_size(
pub(crate) fn get_target_file_size(
config: &Option<crate::table::config::TableConfig<'_>>,
configuration: &HashMap<String, Option<String>>,
) -> i64 {
Expand Down

0 comments on commit 452f8a3

Please sign in to comment.