Conversation
Fixes explorer activity not showing due to 'bytea = bit' PostgreSQL type mismatch when querying with hex strings in WHERE IN clauses. See: wevm/idxs#10
Bundle Size Report
Chunk changes (>1KB)
Compared against main branch (baseline from 1/14/2026, 4:02:04 PM) |
Cloudflare Deployments
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes explorer activity not showing due to 'bytea = bit' PostgreSQL type mismatch when querying with hex strings in WHERE IN clauses.
See: wevm/idxs#10
Greptile Summary
This PR bumps the
idxsdependency from 0.0.5 to 0.0.6 to fix a PostgreSQL type mismatch issue where hex strings in WHERE IN clauses were being incorrectly compared against bytea/bit columns, preventing explorer activity from displaying correctly. The change is a simple, targeted dependency upgrade that resolves the root cause identified in the upstream idxs library.Confidence Score: 5/5
Important Files Changed
idxsdependency from 0.0.5 to 0.0.6 in the catalog to fix PostgreSQL bytea/bit type mismatch issue affecting explorer activity queries.Sequence Diagram
sequenceDiagram participant Explorer as Explorer App participant IDXS as IDXS Library<br/>(0.0.6) participant DB as PostgreSQL<br/>Database Explorer->>IDXS: Query activity with hex strings Note over IDXS: Fixed bytea type<br/>handling in WHERE IN IDXS->>DB: Execute corrected query DB-->>IDXS: Return activity data IDXS-->>Explorer: Activity results displayed Note over Explorer: Explorer activity<br/>now shows correctly