Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcmicu committed Jan 14, 2024
1 parent f475a26 commit 2c06218
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4711,7 +4711,7 @@ fn read_config_files(
/// Given the global configuration map and a parser, compile all of the datatype conditions,
/// add them to a hash map whose keys are the text versions of the conditions and whose values
/// are the compiled conditions, and then finally return the hash map.
fn get_compiled_datatype_conditions(
pub fn get_compiled_datatype_conditions(
config: &SerdeMap,
parser: &StartParser,
) -> HashMap<String, CompiledCondition> {
Expand Down Expand Up @@ -4743,7 +4743,7 @@ fn get_compiled_datatype_conditions(
/// ...
/// }
/// ```
fn get_compiled_rule_conditions(
pub fn get_compiled_rule_conditions(
config: &SerdeMap,
compiled_datatype_conditions: HashMap<String, CompiledCondition>,
parser: &StartParser,
Expand Down Expand Up @@ -4821,7 +4821,7 @@ fn get_compiled_rule_conditions(
/// Given the global config map and a parser, parse all of the structure conditions, add them to
/// a hash map whose keys are given by the text versions of the conditions and whose values are
/// given by the parsed versions, and finally return the hashmap.
fn get_parsed_structure_conditions(
pub fn get_parsed_structure_conditions(
config: &SerdeMap,
parser: &StartParser,
) -> HashMap<String, ParsedStructure> {
Expand Down Expand Up @@ -6568,7 +6568,7 @@ fn get_sql_type(dt_config: &SerdeMap, datatype: &String, pool: &AnyPool) -> Opti

/// Given the global config map, a table name, a column name, and a database connection pool
/// used to determine the database type return the column's SQL type.
fn get_sql_type_from_global_config(
pub fn get_sql_type_from_global_config(
global_config: &SerdeMap,
table: &str,
column: &str,
Expand Down

0 comments on commit 2c06218

Please sign in to comment.