Skip to content

Commit

Permalink
fix analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Oct 9, 2023
1 parent 78e6102 commit 33c3858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nexus/analyzer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,14 @@ impl<'a> StatementAnalyzer for PeerDDLAnalyzer<'a> {
match create_mirror {
CDC(cdc) => {
let mut flow_job_table_mappings = vec![];
for table_mapping in &cdc.table_mappings {
for table_mapping in &cdc.mappings {
flow_job_table_mappings.push(FlowJobTableMapping {
source_table_identifier: table_mapping
.source_table_identifier
.to_string()
.to_lowercase(),
target_table_identifier: table_mapping
.target_table_identifier
.target_identifier
.to_string()
.to_lowercase(),
});
Expand Down

0 comments on commit 33c3858

Please sign in to comment.