fix(dataset import): Support catalog field during dataset import (#29576)
This commit is contained in:
parent
84a1cd245c
commit
0d352b4e06
|
|
@ -249,6 +249,7 @@ class ImportV1DatasetSchema(Schema):
|
|||
offset = fields.Integer()
|
||||
cache_timeout = fields.Integer(allow_none=True)
|
||||
schema = fields.String(allow_none=True)
|
||||
catalog = fields.String(allow_none=True)
|
||||
sql = fields.String(allow_none=True)
|
||||
params = fields.Dict(allow_none=True)
|
||||
template_params = fields.Dict(allow_none=True)
|
||||
|
|
|
|||
|
|
@ -494,6 +494,7 @@ dataset_config: dict[str, Any] = {
|
|||
"offset": 66,
|
||||
"cache_timeout": 55,
|
||||
"schema": "",
|
||||
"catalog": "default",
|
||||
"sql": "",
|
||||
"params": None,
|
||||
"template_params": {},
|
||||
|
|
|
|||
Loading…
Reference in New Issue