Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust Apache/Drill tracing to cover the shared superclass from Apache/Calcite that the Drill class delegates to #3424

Merged
merged 1 commit into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ public class ConnectionInstrumentation extends AbstractConnectionInstrumentation
"net.snowflake.client.jdbc.SnowflakeConnectionV1",
// vertica
"com.vertica.jdbc.common.SConnection",
// apache drill
"org.apache.drill.jdbc.impl.DrillConnectionImpl",
// this covers apache calcite/drill plus the drill-all uber-jar
"org.apache.calcite.avatica.AvaticaConnection",
"oadd.org.apache.calcite.avatica.AvaticaConnection",
// jtds (for SQL Server and Sybase)
"net.sourceforge.jtds.jdbc.JtdsConnection",
// SAP HANA in-memory DB
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ public final class PreparedStatementInstrumentation extends AbstractPreparedStat
"net.snowflake.client.jdbc.SnowflakePreparedStatementV1",
// vertica
"com.vertica.jdbc.common.SPreparedStatement",
// apache drill
"org.apache.drill.jdbc.impl.DrillPreparedStatementImpl",
// this covers apache calcite/drill plus the drill-all uber-jar
"org.apache.calcite.avatica.AvaticaPreparedStatement",
"oadd.org.apache.calcite.avatica.AvaticaPreparedStatement",
// jtds (for SQL Server and Sybase)
"net.sourceforge.jtds.jdbc.JtdsPreparedStatement",
"net.sourceforge.jtds.jdbc.JtdsCallableStatement",
Expand Down