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

(cherry picked from commit 30bc8f06dc)
This commit is contained in:
John Bodley
2024-04-03 09:09:37 -07:00
committed by Michael S. Molina
parent 40fdbd1d05
commit 1b7f599107
3 changed files with 2 additions and 5 deletions

View File

@@ -865,7 +865,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__)