Skip to content

Commit

Permalink
skip row if created_at_fk is null (apache#20939)
Browse files Browse the repository at this point in the history
(cherry picked from commit fb5f8ca)
  • Loading branch information
eschutho authored and jinghua-qa committed Aug 2, 2022
1 parent 8a04536 commit aa3a02d
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 aa3a02d

Please sign in to comment.