betodealmeida commented on a change in pull request #13893: URL: https://github.com/apache/superset/pull/13893#discussion_r605149799
########## File path: superset/queries/saved_queries/commands/importers/v1/_init_.py ########## @@ -0,0 +1,90 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +from typing import Any, Dict, Set + +from marshmallow import Schema +from sqlalchemy.orm import Session + +from supereset.queries.saved_queries.commands.exceptions import SavedQueryImportError +from superset.commands.importers.v1 import ImportModelsCommand +from superset.connectors.sqla.models import SqlaTable +from superset.databases.commands.importers.v1.utils import import_database +from superset.datasets.commands.importers.v1.utils import import_dataset +from superset.dataset.schemas import ImportV1DatasetSchema +from superset.queries.dao import SavedQueryDAO +from superset.queries.saved_queries.commands.importers.v1.utils import import_saved_query +from superset.queries.saved_queries.schemas import ImportV1SavedQuerySchema + +class ImportSavedQueriesCommand(ImportModelsCommand): + """Import Saved Queries""" + + dao = SavedQueryDAO + model_name= "saved_queries" + prefix ="saved_queries/" + schemas: Dict[str, Schema] = { + "datasets/": ImportV1DatasetSchema(), + "saved_query": ImportV1SavedQuerySchema(), + } + import_error = SavedQueryImportError + + @staticmethod + def _import( + session: Session, configs: Dict[str, Any], overwrite: bool = False + ) -> None: + # discover datasets associated with saved queries Review comment: Saved queries are not associated with datasets, they're associated with databases only. This is how the exported saved query looks like: ``` schema: master label: Untitled Query 2 description: test sql: SELECT * FROM covid_dashboard WHERE WHERE FROM HA AVG SUM MAX uuid: 5a8be71f-f59f-4a7c-a7b3-e59394168062 version: 1.0.0 database_uuid: 45812a92-6844-4578-8692-0cc603c3fed0 ``` So you need to scan saved queries, find the associated databases, import them, then import the saved queries. There's no datasets involved here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
