Skip to content

Commit

Permalink
Updated schema name
Browse files Browse the repository at this point in the history
  • Loading branch information
edurdevic committed Jan 8, 2024
1 parent e571478 commit 823ea4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discoverx/dx.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(
def _can_read_columns_table(self) -> bool:
try:
self.spark.sql(
f"SELECT * FROM {self.INFORMATION_SCHEMA}.columns WHERE table_catalog = 'system' AND table_schema = 'columns' LIMIT 1"
f"SELECT * FROM {self.INFORMATION_SCHEMA}.columns WHERE table_catalog = 'system' AND table_schema = 'information_schema' LIMIT 1"
)
return True
except Exception as e:
Expand Down

0 comments on commit 823ea4b

Please sign in to comment.