Skip to content

Commit

Permalink
Fix BK attribute naming format in Links to conform with standard.
Browse files Browse the repository at this point in the history
  • Loading branch information
analyzer1 committed Nov 5, 2024
1 parent 5357035 commit 6338739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/controller/dv_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ fn build_sql_from_link_key(dw_schema: &String, link_key: &LinkKey) -> String {
let mut bk_name_types: Vec<String> = Vec::new();

for bk in &link_key.business_keys {
let bk_name_type = format!("bk_{}_hk VARCHAR", bk.name);
let bk_name_type = format!("hub_{}_hk VARCHAR", bk.name);
bk_name_types.push(bk_name_type);
}

Expand Down

0 comments on commit 6338739

Please sign in to comment.