chore: Default to engine specification regarding using wildcard (#27843)

This commit is contained in:
John Bodley
2024-04-03 09:09:37 -07:00
committed by GitHub
parent 24fc2b67d8
commit 30bc8f06dc
3 changed files with 2 additions and 5 deletions

View File

@@ -871,7 +871,7 @@ class DatabaseRestApi(BaseSupersetModelRestApi):
self.incr_stats("init", self.select_star.__name__)
try:
result = database.select_star(
table_name, schema_name, latest_partition=True, show_cols=True
table_name, schema_name, latest_partition=True
)
except NoSuchTableError:
self.incr_stats("error", self.select_star.__name__)