Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 9a21642

Browse files
committed
feat: upgrade to 0.5.2
1 parent c7d7be3 commit 9a21642

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

databend_py/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.1
1+
0.5.2

docs/connection.md

+14-12
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ client = Client(
2121

2222
### Parameter References
2323

24-
| Parameter | Description | Default | example |
25-
|-------------------|----------------------------------------------------------------------------------------------------------|---------|-----------------------------------------------------------|
26-
| user | username | root | |
27-
| password | password | None | | |
28-
| port | server port | None | |
29-
| database | selected database | default |
30-
| secure | Enable SSL | false | http://root@localhost:8000/db?secure=False |
31-
| copy_purge | If True, the command will purge the files in the stage after they are loaded successfully into the table | false | http://root@localhost:8000/db?copy_purge=False |
32-
| debug | Enable debug log | False | http://root@localhost:8000/db?debug=True |
33-
| persist_cookies | if using cookies set by server to perform following requests. | False | http://root@localhost:8000/db?persist_cookies=True |
34-
| null_to_none | if the result data NULL which is of type str, change it to NoneType | False | http://root@localhost:8000/db?null_to_none=True |
35-
| connect_timeout | timeout seconds when connect to databend | 20 | http://root:root@localhost:8000/db?connect_timeout=30 |
24+
| Parameter | Description | Default | example |
25+
|-----------------|----------------------------------------------------------------------------------------------------------|---------|-------------------------------------------------------|
26+
| user | username | root | |
27+
| password | password | None | | |
28+
| port | server port | None | |
29+
| database | selected database | default |
30+
| secure | Enable SSL | false | http://root@localhost:8000/db?secure=False |
31+
| copy_purge | If True, the command will purge the files in the stage after they are loaded successfully into the table | false | http://root@localhost:8000/db?copy_purge=False |
32+
| debug | Enable debug log | False | http://root@localhost:8000/db?debug=True |
33+
| persist_cookies | if using cookies set by server to perform following requests. | False | http://root@localhost:8000/db?persist_cookies=True |
34+
| null_to_none | if the result data NULL which is of type str, change it to NoneType | False | http://root@localhost:8000/db?null_to_none=True |
35+
| connect_timeout | timeout seconds when connect to databend | 20 | http://root:root@localhost:8000/db?connect_timeout=30 |
36+
| read_timeout | timeout seconds when read from server | 20 | http://root:root@localhost:8000/db?read_timeout=30 |
37+
3638

0 commit comments

Comments
 (0)