Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix to #18522 - Query: SqlFunctionExpression instance should be SqlExpression rather than Expression #18894

Merged
merged 1 commit into from
Nov 19, 2019

Conversation

maumar
Copy link
Contributor

@maumar maumar commented Nov 13, 2019

Resolves #18522

@maumar maumar requested review from smitpatel and roji November 13, 2019 23:06
@@ -116,7 +116,7 @@ protected override Expression VisitExtension(Expression extensionExpression)
protected abstract Expression VisitSqlFragment(SqlFragmentExpression sqlFragmentExpression);
protected abstract Expression VisitSqlFunction(SqlFunctionExpression sqlFunctionExpression);
protected abstract Expression VisitSqlParameter(SqlParameterExpression sqlParameterExpression);
protected abstract Expression VisitSqlUnary(SqlUnaryExpression sqlCastExpression);
protected abstract Expression VisitSqlUnary(SqlUnaryExpression sqlUnaryExpression);
protected abstract Expression VisitSubSelect(ScalarSubqueryExpression scalarSubqueryExpression);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Break this too. VisitScalarSubquery.

@@ -82,7 +82,7 @@ protected override Expression VisitExtension(Expression extensionExpression)
return VisitSqlParameter(sqlParameterExpression);

case ScalarSubqueryExpression subSelectExpression:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update this too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Query: SqlFunctionExpression instance should be SqlExpression rather than Expression
2 participants