fix(data): display UUID values in standard format#5
Conversation
Format PostgreSQL UUID columns as xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx instead of raw byte arrays. Closes #4 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
📝 WalkthroughWalkthroughAdds handling for PostgreSQL UUIDs by recognizing Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@internal/ui/components/table_view_pin_test.go`:
- Line 131: The test currently discards the error from tv.TogglePin(); update
the test to assert the call succeeds like the other cases in this file by
checking the returned error from TogglePin() (e.g., use the same error assertion
pattern used at lines where TogglePin is already checked) instead of assigning
to blank identifier; apply the same change for the other occurrences noted (the
tv.TogglePin() calls at the later two spots) so all TogglePin() invocations in
this test verify and fail on error consistently.
Summary
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxinstead of raw byte arrays[16]bytetype returned by pgx driver in both query executor and metadata data layerCloses #4
Test plan
🤖 Generated with Claude Code
Summary by CodeRabbit
Bug Fixes
Tests