-
Notifications
You must be signed in to change notification settings - Fork 599
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
Failed to start risedev after #8770 #9038
Comments
Seems another occurrence of #6205. Does the issue disappear magically on some commits after the problematic one, or does it consistently happen on all commits after that one? |
Thank you for your response. The issue consistently happens on all commits after the problematic one. Additionally, I was able to reproduce the issue even before the problematic commit by implementing a non-static public method for Please let me know if you need any further information from me. |
I yesterday encountered the error too, and it is magically gone after I rebase with the latest |
I was able to reproduce it on b67e00f and also see it disappear magically on 8e0bf7a (maybe earlier). This is the relevant backtrace of segfault obtained with
This confirms it is the same issue of capturing backtrace (this time inside @gengteng Does checking out latest main resolve this issue on your side? If yes we can close this issue. And thank you for reporting. |
@xiangjinwu |
Tracked by #6205. Closing as duplicate. |
Describe the bug
This problem only occurs after the #8770(b67e00f) commit.
When running the
./risedev d
command, the following error message appears:This problem only occurs after the #8770 commit. Strangely, when trying to delete the
Query::as_simple_values
method and expand it at the call site, the problem can be fixed. Additionally, when implementing a public function forQuery
after rolling back to #9003, the same error occurs:However, removing the
pub
from the function or removing the&self
parameter can start normally.To Reproduce
./risedev d
command on a Mac with an M1 chip.Error: meta-node-5690 exited while waiting for connection: status 139
appears.Expected behavior
The
./risedev d
command can start normally without any error messages.Additional context
Query::as_simple_values
method at the call site fixes the problem is strange.Query
after rolling back to fix(udf): fix wrong number of rows #9003, the same error occurs. However, removing thepub
from the function or removing the&self
parameter can start normally../risedev check
and./risedev test
both pass without any issues.The text was updated successfully, but these errors were encountered: