You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2022/04/04 15:55:08 UTC

[GitHub] [superset] eschutho commented on a diff in pull request #19243: fix: cannot delete a database if team member has SQL editor tab that uses that db

eschutho commented on code in PR #19243:
URL: https://github.com/apache/superset/pull/19243#discussion_r841900062


##########
superset/migrations/versions/8b841273bec3_sql_lab_models_database_constraint_updates.py:
##########
@@ -0,0 +1,111 @@
+# 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.
+"""sql_lab_models_database_constraint_updates
+
+Revision ID: 8b841273bec3
+Revises: 2ed890b36b94
+Create Date: 2022-03-16 21:07:48.768425
+
+"""
+
+# revision identifiers, used by Alembic.
+revision = "8b841273bec3"
+down_revision = "2ed890b36b94"
+
+import sqlalchemy as sa
+from alembic import op
+
+from superset.utils.core import generic_find_fk_constraint_name
+
+
+def upgrade():
+    bind = op.get_bind()
+    insp = sa.engine.reflection.Inspector.from_engine(bind)
+
+    with op.batch_alter_table("tab_state") as batch_op:
+        batch_op.drop_constraint(
+            generic_find_fk_constraint_name("tab_state", {"id"}, "dbs", insp),
+            type_="foreignkey",
+        )
+
+        batch_op.drop_constraint(
+            generic_find_fk_constraint_name("tab_state", {"client_id"}, "query", insp),
+            type_="foreignkey",
+        )
+
+        batch_op.create_foreign_key(
+            "tab_state_database_id_fkey",
+            "dbs",
+            ["database_id"],
+            ["id"],
+            ondelete="CASCADE",
+        )
+
+        batch_op.create_foreign_key(
+            "tab_state_latest_query_id_fkey",
+            "query",
+            ["latest_query_id"],
+            ["client_id"],
+            ondelete="SET NULL",
+        )
+
+    with op.batch_alter_table("table_schema") as batch_op:
+        batch_op.drop_constraint(

Review Comment:
   You can just not run the drop_constraint if the dialect is sqlite or if the constraint isn't found. I prefer the latter b/c it's more specific and descriptive, but either would work. There are a lot of instance of checking for SQLiteDialect in the codebase already. If you go with the latter, though, it would be something like this: 
   ```
   table_schema_id_constraint = generic_find_fk_constraint_name("table_schema", {"id"}, "dbs", insp)
   if table_schema_id_constraint:
       batch_op.drop_constraint(table_schema_id_constraint, type_="foreignkey")
   ```



-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org