Skip to content

Commit f34a708

Browse files
committed
match snowflake's uppercase col names
1 parent 53cbc21 commit f34a708

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dbt_docs_to_notion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ def main():
227227
"text": {
228228
"content": (
229229
column_descriptions[col_name]
230-
if col_name in column_descriptions
230+
if col_name.lower() in column_descriptions
231231
else ''
232232
)
233233
},
234234
"plain_text": (
235235
column_descriptions[col_name]
236-
if col_name in column_descriptions
236+
if col_name.lower() in column_descriptions
237237
else ''
238238
)
239239
}

0 commit comments

Comments
 (0)