Skip to content

Commit

Permalink
Rebase + fixing mistakes during rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
austindrenski committed May 29, 2018
1 parent e2b7b1b commit 5e0b2c9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/EFCore.PG/Query/Sql/Internal/NpgsqlQuerySqlGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,7 @@ protected override Expression VisitIndex(IndexExpression expression)
Visit(GenerateOneBasedIndexExpression(expression.Arguments[i]));
Sql.Append(']');
}

Sql.Append(')');

return expression;
}

Expand All @@ -208,6 +206,7 @@ protected override Expression VisitIndex(IndexExpression expression)
/// </summary>
public Expression VisitArrayAnyAll(ArrayAnyAllExpression arrayAnyAllExpression)
{
Visit(arrayAnyAllExpression.Operand);
Sql.Append(' ');
Sql.Append(arrayAnyAllExpression.Operator);
Sql.Append(' ');
Expand Down

0 comments on commit 5e0b2c9

Please sign in to comment.