Skip to content

Commit 8d32245

Browse files
NiallEgansusodapop
authored andcommitted
PySQL release
1 parent 8c01528 commit 8d32245

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

cmdexec/clients/python/src/databricks/sql/HISTORY

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v2.0.b2 - April 4, 2022
2+
- Change import of collections.Iterable to collections.abc.Iterable to make the library compatible with Python 3.10
3+
- Fixed bug with .tables method so that .tables works as expected with Unity-Catalog enabled endpoints
4+
15
v2.0.0b1 - March 4, 2022
26
- Fix packaging issue (dependencies were not being installed properly)
37
- Fetching timestamp results will now return aware instead of naive timestamps

cmdexec/clients/python/src/databricks/sql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __repr__(self):
2727
DATE = DBAPITypeObject('date')
2828
ROWID = DBAPITypeObject()
2929

30-
__version__ = "2.0.0b1"
30+
__version__ = "2.0.0b2"
3131
USER_AGENT_NAME = "PyDatabricksSqlConnector"
3232

3333
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)