Skip to content

Commit

Permalink
Fix DremioCatalog
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jul 22, 2021
1 parent 7320569 commit a29bb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intake_dremio/dremio_cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _load(self):

def _create_entry(self, row):
name = f'{row.TABLE_SCHEMA}."{row.TABLE_NAME}"'
description = f'Dremio {row.TABLE_TYPE} {name} from {self._hostname}'
description = f'Dremio {row.TABLE_TYPE} {name} from {self._source._hostname}'
args = dict(self._source._init_args, sql_expr=f'SELECT * FROM {name}')
e = LocalCatalogEntry(name, description, 'dremio', True,
args, {}, {}, {}, "", getenv=False,
Expand Down

0 comments on commit a29bb07

Please sign in to comment.