mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-27 16:55:06 +00:00
ingestion refactor
This commit is contained in:
parent
df49235748
commit
d2da70f1c0
@ -118,7 +118,6 @@ class PostgresSource(Source):
|
||||
Using itertools.groupby and raw level iterator, it groups to table and yields TableMetadata
|
||||
:return:
|
||||
"""
|
||||
counter = 0
|
||||
for key, group in groupby(self._get_raw_extract_iter(), get_table_key):
|
||||
columns = []
|
||||
for row in group:
|
||||
|
||||
@ -42,8 +42,6 @@ def get_table_column_join(table, table_aliases, joins):
|
||||
except ValueError as err:
|
||||
logger.error("Error in parsing sql query joins {}".format(err))
|
||||
pass
|
||||
if table == "venue":
|
||||
print(table_column)
|
||||
return TableColumnJoin(table_column=table_column, joined_with=joined_with)
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user