mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
fix: do not drop calculated column on metadata sync (#11731)
This commit is contained in:
@@ -128,10 +128,8 @@ class BaseDatasource(
|
||||
),
|
||||
)
|
||||
|
||||
# placeholder for a relationship to a derivative of BaseColumn
|
||||
columns: List[Any] = []
|
||||
# placeholder for a relationship to a derivative of BaseMetric
|
||||
metrics: List[Any] = []
|
||||
columns: List["BaseColumn"] = []
|
||||
metrics: List["BaseMetric"] = []
|
||||
|
||||
@property
|
||||
def type(self) -> str:
|
||||
|
||||
Reference in New Issue
Block a user