Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
removed logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Credgate committed Mar 14, 2023
1 parent 9ea09d1 commit 2393310
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tap_redshift/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,9 @@ def discover_catalog(conn, db_name, db_schemas):
"""
)
entries = []
LOGGER.warning(f"column_specs before transformation: {column_specs}")
table_columns = [{'name': k, 'columns': [
{'pos': t[1], 'name': t[2], 'type': t[3], 'nullable': t[4], } for t in v
]} for k, v in groupby(column_specs, key=lambda t: t[0])]
LOGGER.warning(f"Table_columns after transformation: {table_columns}")
table_pks = {k: [t[1] for t in v]
for k, v in groupby(pk_specs, key=lambda t: t[0])}
table_spec_dict = table_spec_to_dict(table_spec)
Expand Down

0 comments on commit 2393310

Please sign in to comment.