Commit 84eeb29b authored by Daren Sin's avatar Daren Sin Committed by Tao Feng

Made changes to where_clause_suffix to read PostgreSQL column metadata (#183)

* Made changes to where_clause_suffix

* Updated back to table_schema instead of table_name

* Added new line at end of file

* Removed blank space in new line
parent a8025011
...@@ -75,7 +75,7 @@ def connection_string(): ...@@ -75,7 +75,7 @@ def connection_string():
def create_table_extract_job(**kwargs): def create_table_extract_job(**kwargs):
where_clause_suffix = textwrap.dedent(""" where_clause_suffix = textwrap.dedent("""
where table_schema in {schemas} where table_schema in {schemas}
""") """).format(schemas=SUPPORTED_SCHEMA_SQL_IN_CLAUSE)
tmp_folder = '/var/tmp/amundsen/table_metadata' tmp_folder = '/var/tmp/amundsen/table_metadata'
node_files_folder = '{tmp_folder}/nodes/'.format(tmp_folder=tmp_folder) node_files_folder = '{tmp_folder}/nodes/'.format(tmp_folder=tmp_folder)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment