Skip to content

Commit 3a92d3a

Browse files
committed
[mysql] updated docs to be clear on what is supported now
1 parent 86dc37b commit 3a92d3a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ddtrace/contrib/mysql/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
cursor.execute("SELECT 6*7 AS the_answer;")
1313
1414
This package works for mysql.connector version 2.1.x.
15+
Only the default full-Python integration works. The binary C connector,
16+
provided by _mysql_connector, is not supported yet.
1517
1618
Help on mysql.connector can be found on:
1719
https://dev.mysql.com/doc/connector-python/en/

ddtrace/contrib/mysql/tracers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def get_traced_mysql_connection(ddtracer, service=DEFAULT_SERVICE, meta=None, tr
3838
meta -- your custom meta data
3939
trace_fetch -- set to True if you want fetchall, fetchone,
4040
fetchmany and fetchwarnings to be traced. By default
41-
only execute and executemany are traced.
41+
only execute, executemany and callproc are traced.
4242
"""
4343
if trace_fetch:
4444
traced_funcs = _TRACEABLE_FUNCS

0 commit comments

Comments
 (0)