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
ref(asyncpg): Move query whitespace normalization into integration
Instead of normalizing span descriptions generically in client.py
before calling before_send_transaction, normalize queries at the source
in the asyncpg integration. This is more correct because the
normalization is specific to SQL query formatting, not a general
concern for all span descriptions.
Remove _clean_span_descriptions from _Client and the generic tests.
Add asyncpg-specific tests for normalized descriptions and
before_send_transaction interaction.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
=="SELECT u.id, u.name, u.email, p.title AS post_title, p.created_at AS post_date FROM users u JOIN posts p ON u.id = p.user_id WHERE u.active = true ORDER BY p.created_at DESC"
0 commit comments