Skip to content

Commit ae54c7d

Browse files
committed
minor fix
1 parent f6225f0 commit ae54c7d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

nexus/analyzer/src/lib.rs

+7
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,13 @@ impl<'a> StatementAnalyzer for PeerDDLAnalyzer<'a> {
393393
if_exists: *if_exists,
394394
flow_job_name: mirror_name.to_string().to_lowercase(),
395395
})),
396+
Statement::ResumeMirror {
397+
if_exists,
398+
mirror_name,
399+
} => Ok(Some(PeerDDL::ResumeMirror {
400+
if_exists: *if_exists,
401+
flow_job_name: mirror_name.to_string().to_lowercase(),
402+
})),
396403
_ => Ok(None),
397404
}
398405
}

0 commit comments

Comments
 (0)