We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18fcc5b commit cbda7d5Copy full SHA for cbda7d5
tests/contrib/psycopg/test_psycopg.py
@@ -169,3 +169,10 @@ def test_patch_unpatch(self):
169
spans = writer.pop()
170
assert spans, spans
171
eq_(len(spans), 1)
172
+
173
+def test_backwards_compatibilty_v3():
174
+ tracer = get_dummy_tracer()
175
+ factory = connection_factory(tracer, service="my-postgres-db")
176
+ conn = psycopg2.connect(connection_factory=factory, **POSTGRES_CONFIG)
177
+ conn.cursor().execute("select 'blah'")
178
0 commit comments