-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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 columns duplication on MongoDB Query Runner #6640 #6641
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7a20f87
Fix columns duplication on MongoDB Query Runner
masayuki038 6041750
Merge branch 'master' into issue-6640
konnectr 4632886
Fix columns duplication on MongoDB Query Runner
masayuki038 dd60abb
Merge branch 'master' into issue-6640
masayuki038 8ea665e
Merge branch 'master' into issue-6640
masayuki038 e348e36
Merge branch 'master' into issue-6640
masayuki038 0c03667
Fix the merge issue
masayuki038 c4f5b6e
Merge branch 'master' into issue-6640
justinclift File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
First of all thanks for the fix on this, I was having this problem recently : D
In here, to make this more efficient, can't we just get the first row, and then generate the columns array from that outside for this for loop?
In this case every cell in the table requires this comparison which is in-efficient and whether we check row1 or rowN the columns will be same.
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.
@clearnote01 I understand your comment. I also think that if it is normal RDB data, I should do that.
I thought that MongoDB can have a different column for each row, so I implemented it like this. Does such a case not exist?
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.
@masayuki038 You are right, I don't think it's a problem when projection is specifically configured via $project, but there could be other cases that would break it.
Maybe it's safer to keep it as it is, and have a note that this could be optimized in the future if someone can rule out the edge cases.