Skip to content

Commit

Permalink
skip row if created_at_fk is null (#20939)
Browse files Browse the repository at this point in the history
  • Loading branch information
eschutho authored Aug 2, 2022
1 parent 7e836e9 commit fb5f8ca
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@
"""

# revision identifiers, used by Alembic.
revision = "409c7b420ab0"
down_revision = "a39867932713"

from alembic import op
from sqlalchemy import and_, Column, insert, Integer
from sqlalchemy.ext.declarative import declarative_base

# revision identifiers, used by Alembic.
from superset import db

revision = "409c7b420ab0"
down_revision = "a39867932713"


Base = declarative_base()


Expand Down Expand Up @@ -95,7 +96,7 @@ def upgrade():
DatasetUser.user_id == Dataset.created_by_fk,
),
)
.filter(DatasetUser.dataset_id == None),
.filter(DatasetUser.dataset_id == None, Dataset.created_by_fk != None),
)
)

Expand Down

0 comments on commit fb5f8ca

Please sign in to comment.