Skip to content

Commit

Permalink
add missing columns to select
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro committed Jun 26, 2021
1 parent 5c60b39 commit 4fd2b4e
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions superset/datasets/api.py
Expand Up @@ -139,16 +139,20 @@ class DatasetRestApi(BaseSupersetModelRestApi):
"owners.username",
"owners.first_name",
"owners.last_name",
"columns.changed_on",
"columns.column_name",
"columns.verbose_name",
"columns.is_dttm",
"columns.is_active",
"columns.type",
"columns.groupby",
"columns.filterable",
"columns.expression",
"columns.created_on",
"columns.description",
"columns.expression",
"columns.filterable",
"columns.groupby",
"columns.id",
"columns.is_active",
"columns.is_dttm",
"columns.python_date_format",
"columns.type",
"columns.uuid",
"columns.verbose_name",
"metrics",
"datasource_type",
"url",
Expand Down

0 comments on commit 4fd2b4e

Please sign in to comment.