-
Notifications
You must be signed in to change notification settings - Fork 284
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
unexpected EOF revisited #4225
Comments
I have seen this very intermittently. Seems to be a crash in the C code for here is the full db stack trace when this happens:
|
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days. |
github-actions
bot
added
the
stale
No recent activity has been detected on this issue/PR and it will be closed
label
Jun 18, 2024
This issue was closed because it has been stalled for 90 days with no activity. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've run into variations of #1388 a number of times.
Here's one that just happened it in v0.22.1.
This crashed with
unexpected EOF
and the db log said:I then tried this:
And the query works as expected.
I have suspected this is related to dynamic construction of column values, in this case using string concatenation, and here is a clear illustration of it. Without the concatentation, it has seemed that
as materialized
is not required, this worked.Frustratingly this does not seem to be reproducible. After a steampipe restart I was able to run the query with concatenation and without
as materialized
.Here is a different case that does seem to be reliably reproducible, and I think more closely resembles #1388. Without
as materialized
this happens, withas materialized
the query is OK.This works.
And the observation about concatenation holds here too. This works.
The text was updated successfully, but these errors were encountered: