You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error is harmless and doesn't impact playback, but the query responsible for returning currently scheduled events could be improved to avoid considering the draft.
In the query we join on layouts via their campaign, and exclude drafts (parentId is null):
LEFT OUTER JOIN`campaign`ON`schedule`.CampaignID =campaign.CampaignIDLEFT OUTER JOIN`lkcampaignlayout`ONlkcampaignlayout.CampaignID=campaign.CampaignIDLEFT OUTER JOIN`layout`ONlkcampaignlayout.LayoutID=layout.LayoutIDANDlayout.retired=0ANDlayout.parentId IS NULL
However, because this is an OUTER join, we do still get the lkcampaignlayout record, including the link to the draft.
The text was updated successfully, but these errors were encountered:
The error is harmless and doesn't impact playback, but the query responsible for returning currently scheduled events could be improved to avoid considering the draft.
In the query we join on layouts via their campaign, and exclude drafts (parentId is null):
However, because this is an OUTER join, we do still get the
lkcampaignlayout
record, including the link to the draft.The text was updated successfully, but these errors were encountered: