Skip to content

Commit

Permalink
trying to get rid of sqlalchemy deprecation warning
Browse files Browse the repository at this point in the history
"sqlalchemy.exc.SADeprecationWarning: The Binary class is deprecated and will be removed in a future relase.  Please use LargeBinary."
  • Loading branch information
The-Alchemist committed Jul 29, 2019
1 parent 2f4f394 commit c26cd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhive/tests/test_sqlalchemy_hive.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def test_lots_of_types(self, engine, connection):
'NUMERIC', 'DECIMAL', 'TIMESTAMP', 'DATETIME', 'CLOB', 'BLOB',
'BOOLEAN', 'SMALLINT', 'DATE', 'TIME',
'String', 'Integer', 'SmallInteger',
'Numeric', 'Float', 'DateTime', 'Date', 'Time', 'Binary',
'Numeric', 'Float', 'DateTime', 'Date', 'Time', 'LargeBinary',
'Boolean', 'Unicode', 'UnicodeText',
]
cols = []
Expand Down

0 comments on commit c26cd56

Please sign in to comment.