You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason, the typeinfo query returned a row data entry with only a single item in it. I haven't yet searched any further to understand how this could possibly happen, but it did so I am reporting it. I plan to fix this in our fork by replacing ranges[idx] with ranges.get(idx)? but maybe there's a better solution (erroring on Row::new)?
The text was updated successfully, but these errors were encountered:
I don't have a good explanation for what happened, but I see a panic in our production environment from the prepared statement code.
This panic comes from
rust-postgres/tokio-postgres/src/row.rs
Line 187 in c5ff8cf
rust-postgres/tokio-postgres/src/prepare.rs
Line 149 in c5ff8cf
For some reason, the typeinfo query returned a row data entry with only a single item in it. I haven't yet searched any further to understand how this could possibly happen, but it did so I am reporting it. I plan to fix this in our fork by replacing
ranges[idx]
withranges.get(idx)?
but maybe there's a better solution (erroring onRow::new
)?The text was updated successfully, but these errors were encountered: