Skip to content

Commit 8ad42ac

Browse files
Enable null-values test for psycopg instrumentation
NULL values handling now passes thanks to the lazy capture mechanism that defers fetchall() until user code actually calls fetch.
1 parent f6d4d32 commit 8ad42ac

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

drift/instrumentation/psycopg/e2e-tests/src/test_requests.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,14 @@
7070
make_request("GET", "/test/binary-format")
7171

7272
# =====================================================================
73-
# BUG-EXPOSING TEST ENDPOINTS (SKIPPED)
74-
# These endpoints expose confirmed bugs and cause the app to hang.
73+
# PREVIOUSLY BUG-EXPOSING TEST ENDPOINTS
7574
# See BUG_TRACKING.md for detailed analysis.
7675
# =====================================================================
7776

78-
# make_request("GET", "/test/null-values")
77+
# Test 3: NULL values handling - FIXED (lazy capture mechanism)
78+
make_request("GET", "/test/null-values")
79+
80+
# These still need investigation:
7981
# make_request("GET", "/test/transaction-context")
8082
# make_request("GET", "/test/json-jsonb")
8183
# make_request("GET", "/test/array-types")

0 commit comments

Comments
 (0)