From 03c8d81800f8639e8cceba184f124b6bb538b21f Mon Sep 17 00:00:00 2001 From: Jason Moiron Date: Sun, 24 Jan 2021 14:27:04 -0500 Subject: [PATCH] add new relic instrumented drivernames to default bindvar lists, fixes #563 --- bind.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bind.go b/bind.go index 17a97690..e521503b 100644 --- a/bind.go +++ b/bind.go @@ -22,8 +22,8 @@ const ( ) var defaultBinds = map[int][]string{ - DOLLAR: []string{"postgres", "pgx", "pq-timeouts", "cloudsqlpostgres", "ql"}, - QUESTION: []string{"mysql", "sqlite3"}, + DOLLAR: []string{"postgres", "pgx", "pq-timeouts", "cloudsqlpostgres", "ql", "nrpostgres"}, + QUESTION: []string{"mysql", "sqlite3", "nrmysql", "nrsqlite3"}, NAMED: []string{"oci8", "ora", "goracle"}, AT: []string{"sqlserver"}, }