Don't try to bulk skip any unsupported cross join. Current test skips too many that should go through and works

pull/257/head
Christopher Jolly 1 year ago
parent 3d85f906f5
commit 14d21012c0

@ -93,10 +93,6 @@ public class JetCompatibilityExpressionVisitor : ExpressionVisitor
protected virtual Expression VisitCrossJoin(CrossJoinExpression crossJoinExpression)
{
if (crossJoinExpression.Table is SelectExpression selectExpression)
{
return TranslationFailed(selectExpression);
}
return base.VisitExtension(crossJoinExpression);
}

Loading…
Cancel
Save