Skip to content

Commit

Permalink
feat: merge databend driver
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc committed Nov 22, 2023
1 parent 7960ae2 commit 8bf55c4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,3 @@ jobs:
echo "show user name:"
echo ${{ secrets.TWINE_USERNAME }}
twine upload -u ${{ secrets.TWINE_USERNAME }} -p ${{ secrets.TWINE_PASSWORD }} dist/*
2 changes: 1 addition & 1 deletion databend_py/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.9
0.5.0
29 changes: 28 additions & 1 deletion databend_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,31 @@
from .connection import Connection
from .datetypes import DatabendDataType

__all__ = ['Client', 'Connection', 'DatabendDataType']
from databend_driver import (
AsyncDatabendClient,
AsyncDatabendConnection,
BlockingDatabendClient,
BlockingDatabendConnection,
Row,
RowIterator,
Field,
Schema,
ServerStats,
ConnectionInfo,
)

__all__ = [
"Client",
"Connection",
"DatabendDataType",
"AsyncDatabendClient",
"AsyncDatabendConnection",
"BlockingDatabendClient",
"BlockingDatabendConnection",
"Row",
"RowIterator",
"Field",
"Schema",
"ServerStats",
"ConnectionInfo",
]

0 comments on commit 8bf55c4

Please sign in to comment.