I'm trying to fetch a table from MS SQL Server into Pandas but I get the error:

ProgrammingErro r: ('ODBC SQL type -151 is not yet supported. column-index=3 type=-151', 'HY106')


Code:
import pandas
import pyodbc

cnxn = pyodbc.connect("Driver={ODBC Driver 13 for SQL Server};"
                      "Server=localhost;"
                      "Database=AdventureWorks2012;"
...