Skip to content

Commit c26cd56

Browse files
committed
trying to get rid of sqlalchemy deprecation warning
"sqlalchemy.exc.SADeprecationWarning: The Binary class is deprecated and will be removed in a future relase. Please use LargeBinary."
1 parent 2f4f394 commit c26cd56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyhive/tests/test_sqlalchemy_hive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def test_lots_of_types(self, engine, connection):
151151
'NUMERIC', 'DECIMAL', 'TIMESTAMP', 'DATETIME', 'CLOB', 'BLOB',
152152
'BOOLEAN', 'SMALLINT', 'DATE', 'TIME',
153153
'String', 'Integer', 'SmallInteger',
154-
'Numeric', 'Float', 'DateTime', 'Date', 'Time', 'Binary',
154+
'Numeric', 'Float', 'DateTime', 'Date', 'Time', 'LargeBinary',
155155
'Boolean', 'Unicode', 'UnicodeText',
156156
]
157157
cols = []

0 commit comments

Comments
 (0)