-
Notifications
You must be signed in to change notification settings - Fork 32
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
Cannot find siva file in complex query #364
Labels
Comments
Here's the generated physical plan:
|
I could reduce the failing query to this: SELECT
t.path
FROM
tree_entries t
JOIN (
SELECT DISTINCT
repository_id
FROM commits
) AS r
ON
t.repository_id = r.repository_id Plan:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected Behavior
The following query should not crash:
Current Behavior
Query immediately crashes:
Possible Solution
My best guess is that a task is cleaning up a temporary siva file that other task needs simultaneously. But I couldn't debug this properly yet.
Steps to Reproduce
Context
I'm trying a complex query containing a join with a subquery. Both sides access the same repositories.
Your Environment (for bugs)
The text was updated successfully, but these errors were encountered: