From 72a9ce09a9bef0f8c30e8412ddf00f6ab13d8654 Mon Sep 17 00:00:00 2001 From: Kevin Biju Date: Wed, 8 Nov 2023 02:12:09 +0530 Subject: [PATCH] minor fix --- nexus/analyzer/src/lib.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nexus/analyzer/src/lib.rs b/nexus/analyzer/src/lib.rs index c06a34bec9..82f7dd569d 100644 --- a/nexus/analyzer/src/lib.rs +++ b/nexus/analyzer/src/lib.rs @@ -419,6 +419,13 @@ impl<'a> StatementAnalyzer for PeerDDLAnalyzer<'a> { if_exists: *if_exists, flow_job_name: mirror_name.to_string().to_lowercase(), })), + Statement::ResumeMirror { + if_exists, + mirror_name, + } => Ok(Some(PeerDDL::ResumeMirror { + if_exists: *if_exists, + flow_job_name: mirror_name.to_string().to_lowercase(), + })), _ => Ok(None), } }