From 50e6740ee17e2a74982763deaec722e8d0f36e5a Mon Sep 17 00:00:00 2001 From: Amogh-Bharadwaj Date: Fri, 30 Aug 2024 18:56:57 +0530 Subject: [PATCH] query layer patch --- nexus/analyzer/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/nexus/analyzer/src/lib.rs b/nexus/analyzer/src/lib.rs index 55ec8987c3..35f844947e 100644 --- a/nexus/analyzer/src/lib.rs +++ b/nexus/analyzer/src/lib.rs @@ -750,6 +750,7 @@ fn parse_db_options(db_type: DbType, with_options: &[SqlOption]) -> anyhow::Resu .map(|s| s.parse::().unwrap_or_default()) .unwrap_or_default(), endpoint: opts.get("endpoint").map(|s| s.to_string()), + role_arn: opts.get("role_arn").map(|s| s.to_string()), certificate: opts.get("certificate").map(|s| s.to_string()), private_key: opts.get("private_key").map(|s| s.to_string()), };