From b064e51a84fd039baa02c28ef460d749554d8e7c Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Thu, 22 Jul 2021 21:52:03 -0700 Subject: [PATCH] fix(ingestion): make snowflake database names lowercase (#2942) --- metadata-ingestion/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/metadata-ingestion/README.md b/metadata-ingestion/README.md index 312707408e..beb97ddfd7 100644 --- a/metadata-ingestion/README.md +++ b/metadata-ingestion/README.md @@ -420,12 +420,13 @@ source: password: pass host_port: account_name database_pattern: + # The escaping of the $ symbol helps us skip the environment variable substitution. allow: - - ^regex$ - - ^another_regex$ + - ^MY_DEMO_DATA.* + - ^ANOTHER_DB_REGEX deny: - - ^SNOWFLAKE$ - - ^SNOWFLAKE_SAMPLE_DATA$ + - ^SNOWFLAKE\$ + - ^SNOWFLAKE_SAMPLE_DATA\$ warehouse: "COMPUTE_WH" # optional role: "sysadmin" # optional include_views: True # whether to include views, defaults to True