singlestoredb 1.8.0__cp38-abi3-win32.whl → 1.10.0__cp38-abi3-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of singlestoredb might be problematic. Click here for more details.
- _singlestoredb_accel.pyd +0 -0
- singlestoredb/__init__.py +2 -2
- singlestoredb/config.py +6 -0
- singlestoredb/connection.py +11 -0
- singlestoredb/fusion/handler.py +3 -7
- singlestoredb/fusion/handlers/export.py +17 -21
- singlestoredb/fusion/handlers/files.py +690 -0
- singlestoredb/fusion/handlers/stage.py +103 -91
- singlestoredb/fusion/handlers/utils.py +148 -0
- singlestoredb/magics/__init__.py +34 -0
- singlestoredb/magics/run_personal.py +56 -0
- singlestoredb/magics/run_shared.py +53 -0
- singlestoredb/management/__init__.py +1 -0
- singlestoredb/management/cluster.py +2 -1
- singlestoredb/management/export.py +20 -184
- singlestoredb/management/files.py +1039 -0
- singlestoredb/management/manager.py +3 -2
- singlestoredb/management/workspace.py +165 -351
- singlestoredb/mysql/connection.py +9 -1
- singlestoredb/tests/test.ipynb +18 -0
- singlestoredb/tests/test2.ipynb +18 -0
- singlestoredb/tests/test_management.py +273 -1
- {singlestoredb-1.8.0.dist-info → singlestoredb-1.10.0.dist-info}/METADATA +1 -1
- {singlestoredb-1.8.0.dist-info → singlestoredb-1.10.0.dist-info}/RECORD +30 -21
- {singlestoredb-1.8.0.dist-info → singlestoredb-1.10.0.dist-info}/top_level.txt +1 -0
- sqlx/__init__.py +4 -0
- sqlx/magic.py +113 -0
- {singlestoredb-1.8.0.dist-info → singlestoredb-1.10.0.dist-info}/LICENSE +0 -0
- {singlestoredb-1.8.0.dist-info → singlestoredb-1.10.0.dist-info}/WHEEL +0 -0
- {singlestoredb-1.8.0.dist-info → singlestoredb-1.10.0.dist-info}/entry_points.txt +0 -0
|
@@ -43,10 +43,11 @@ class Manager(object):
|
|
|
43
43
|
"""SingleStoreDB manager base class."""
|
|
44
44
|
|
|
45
45
|
#: Management API version if none is specified.
|
|
46
|
-
default_version = config.get_option('management.version')
|
|
46
|
+
default_version = config.get_option('management.version') or 'v1'
|
|
47
47
|
|
|
48
48
|
#: Base URL if none is specified.
|
|
49
|
-
default_base_url = config.get_option('management.base_url')
|
|
49
|
+
default_base_url = config.get_option('management.base_url') \
|
|
50
|
+
or 'https://api.singlestore.com'
|
|
50
51
|
|
|
51
52
|
#: Object type
|
|
52
53
|
obj_type = ''
|