From 262eeb4b505a9090a167eab614ebcc36e3e1dafa Mon Sep 17 00:00:00 2001 From: Gord Thompson Date: Fri, 27 Dec 2019 13:39:23 -0700 Subject: [PATCH] Fix comment re: ODBC driver name on Windows. (cherry picked from commit 57fa3c067083a7d5a67301a251e5cd492865401c) --- test/requirements.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/requirements.py b/test/requirements.py index 527fb77db6..44f35d4962 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -1312,8 +1312,8 @@ class DefaultRequirements(SuiteRequirements): drivername = conn.connection.connection.getinfo( config.db.dialect.dbapi.SQL_DRIVER_NAME ) - # on linux this is 'libmsodbcsql-13.1.so.9.2'. - # don't know what it is on windows + # on linux this is something like 'libmsodbcsql-13.1.so.9.2'. + # on Windows this is something like 'msodbcsql17.dll'. return "msodbc" in drivername return only_if( -- 2.47.2