-
Notifications
You must be signed in to change notification settings - Fork 93
Fix join error in the new query parser (#857) #878
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
Merged
guzman-raphael
merged 20 commits into
datajoint:dev
from
dimitri-yatsenko:cascade-delete
Mar 17, 2021
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
07e6855
README.md: flip gitter badge to slack (#828)
deb2b98
Merge pull request #860 from ixcat/issue-828
guzman-raphael c127fac
Merge remote-tracking branch 'upstream/release013' into issue-873
0fef7b6
06-distributed-computing_jobs_by_key.rst: include table name in example
92d34dd
06-distributed-computing_jobs_by_key.rst: include table name by metho…
43290a5
Merge pull request #874 from ixcat/issue-873
dimitri-yatsenko afa77f9
Add test case for same secondary attributes between parent/child.
guzman-raphael fe85a82
Fix merge conflicts.
guzman-raphael 052a36b
Merge pull request #8 from guzman-raphael/duplicate-secondary-attr-test
dimitri-yatsenko ed7c624
add test for #876
dimitri-yatsenko d52f072
Merge branch 'cascade-delete' of https://github.com/dimitri-yatsenko/…
dimitri-yatsenko 5469c5c
fix #857
dimitri-yatsenko 26f6265
fix #876
dimitri-yatsenko d5f6f1d
Add debug logging.
guzman-raphael 66a0995
Update duplicate attribute test.
guzman-raphael 40c94cb
Remove debug statement.
guzman-raphael a172a1d
Bump version.
guzman-raphael f52b8a7
Merge branch 'duplicate-secondary-attr-test' into duplicate-secondary…
guzman-raphael 5456c1e
Fix test and update changelog.
guzman-raphael 9955fe2
Merge pull request #9 from guzman-raphael/duplicate-secondary-attr
dimitri-yatsenko 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| __version__ = "0.13.dev5" | ||
| __version__ = "0.13.dev6" | ||
|
|
||
| assert len(__version__) <= 10 # The log table limits version to the 10 characters |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
This is a reasonable way to solve it with a subquery for special case. Still not a big fan of this as opposed to indexing it properly but we discussed this already. This is probably the best option given our current time constraints. We can always revisit if there is a more specific need to do so.