-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Implement right join support #35462
base: main
Are you sure you want to change the base?
Implement right join support #35462
Conversation
4cb34bb
to
778c04e
Compare
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
@@ -620,6 +620,31 @@ FROM [JsonEntitiesSingleOwned] AS [j] | |||
"""); | |||
} | |||
|
|||
public override async Task RightJoin_json_entities(bool async) | |||
{ | |||
// TODO:SQLJSON Returns empty (invalid) JSON (See BadJson.cs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should not block a PR merge. we can create an issue to track this work later.
LGTM - @cincuranet please take a look |
private static ConstructorInfo? _quotingConstructor; | ||
|
||
/// <summary> | ||
/// Creates a new instance of the <see cref="LeftJoinExpression" /> class. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// Creates a new instance of the <see cref="LeftJoinExpression" /> class. | |
/// Creates a new instance of the <see cref="RightJoinExpression" /> class. |
/// <summary> | ||
/// Creates a new instance of the <see cref="LeftJoinExpression" /> class. | ||
/// </summary> | ||
/// <param name="table">A table source to LEFT JOIN with.</param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// <param name="table">A table source to LEFT JOIN with.</param> | |
/// <param name="table">A table source to RIGHT JOIN with.</param> |
This PR is based on top of #35451, review from 2nd commit only.Closes #35367