[dataset] columns and metrics API (nested) (#9268)

* [dataset] columns and metrics API (nested)

* [dataset] tests and validation

* [datasets] Fix, revert list field name to database_name
This commit is contained in:
Daniel Vaz Gaspar
2020-03-24 17:24:08 +00:00
committed by GitHub
parent 46e39d1036
commit ccb22dc976
13 changed files with 733 additions and 128 deletions

View File

@@ -25,7 +25,10 @@ from superset.exceptions import SupersetException
class CommandException(SupersetException):
""" Common base class for Command exceptions. """
pass
def __repr__(self):
if self._exception:
return self._exception
return self
class CommandInvalidError(CommandException):