feat: add certifiedby & certification details fields to the edit dataset columns fields (#16454)

* add migration

* add backend and frontend for certified

* update migration with batch

* fix integration test and update Updating.md

* Update superset-frontend/src/datasource/DatasourceEditor.jsx

Co-authored-by: Geido <60598000+geido@users.noreply.github.com>

* Update superset-frontend/src/datasource/DatasourceEditor.jsx

Co-authored-by: Geido <60598000+geido@users.noreply.github.com>

* Update superset-frontend/src/datasource/DatasourceEditor.jsx

Co-authored-by: Geido <60598000+geido@users.noreply.github.com>

* change method name

* add tooltip info

* add mixin

* merge heads

* address comments

* fix select label styles

* add extra field

* fix test?

* add extra field to put schema

Co-authored-by: Geido <60598000+geido@users.noreply.github.com>
This commit is contained in:
Phillip Kelley-Dotson
2021-09-22 15:09:30 -07:00
committed by GitHub
parent 63aadd3fe4
commit a198dbb19b
13 changed files with 227 additions and 69 deletions

View File

@@ -92,6 +92,7 @@ class TestExportDatasetsCommand(SupersetTestCase):
"python_date_format": None,
"type": type_map["source"],
"verbose_name": None,
"extra": None,
},
{
"column_name": "target",
@@ -104,6 +105,7 @@ class TestExportDatasetsCommand(SupersetTestCase):
"python_date_format": None,
"type": type_map["target"],
"verbose_name": None,
"extra": None,
},
{
"column_name": "value",
@@ -116,6 +118,7 @@ class TestExportDatasetsCommand(SupersetTestCase):
"python_date_format": None,
"type": type_map["value"],
"verbose_name": None,
"extra": None,
},
],
"database_uuid": str(example_db.uuid),