Skip to content

Commit

Permalink
try to prevent casing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
eloyfelix committed Jan 17, 2025
1 parent 269f8d9 commit 3731006
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cbl_migrator/migrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ def __init__(
self.n_cores = n_workers
self.exclude_fields = {}
for item in exclude_fields:
table, field = item.split(".")
table, field = item.lower().split(".")
if table not in self.exclude_fields:
self.exclude_fields[table.lower()] = []
self.exclude_fields[table.lower()].append(field.lower())
self.exclude_fields[table] = []
self.exclude_fields[table].append(field)

o_eng = create_engine(self.o_eng_conn)
metadata = MetaData()
Expand Down

0 comments on commit 3731006

Please sign in to comment.