singlestoredb 1.15.2__py3-none-any.whl → 1.15.3__py3-none-any.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/__init__.py +1 -1
- singlestoredb/tests/test_ext_func_data.py +18 -18
- {singlestoredb-1.15.2.dist-info → singlestoredb-1.15.3.dist-info}/METADATA +1 -1
- {singlestoredb-1.15.2.dist-info → singlestoredb-1.15.3.dist-info}/RECORD +8 -8
- {singlestoredb-1.15.2.dist-info → singlestoredb-1.15.3.dist-info}/LICENSE +0 -0
- {singlestoredb-1.15.2.dist-info → singlestoredb-1.15.3.dist-info}/WHEEL +0 -0
- {singlestoredb-1.15.2.dist-info → singlestoredb-1.15.3.dist-info}/entry_points.txt +0 -0
- {singlestoredb-1.15.2.dist-info → singlestoredb-1.15.3.dist-info}/top_level.txt +0 -0
singlestoredb/__init__.py
CHANGED
|
@@ -269,7 +269,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
269
269
|
def test_numpy_accel(self):
|
|
270
270
|
dump_res = rowdat_1._dump_numpy_accel(
|
|
271
271
|
col_types, numpy_row_ids, numpy_data,
|
|
272
|
-
)
|
|
272
|
+
)
|
|
273
273
|
load_res = rowdat_1._load_numpy_accel(col_spec, dump_res)
|
|
274
274
|
|
|
275
275
|
ids = load_res[0]
|
|
@@ -294,7 +294,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
294
294
|
def test_numpy(self):
|
|
295
295
|
dump_res = rowdat_1._dump_numpy(
|
|
296
296
|
col_types, numpy_row_ids, numpy_data,
|
|
297
|
-
)
|
|
297
|
+
)
|
|
298
298
|
load_res = rowdat_1._load_numpy(col_spec, dump_res)
|
|
299
299
|
|
|
300
300
|
ids = load_res[0]
|
|
@@ -387,7 +387,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
387
387
|
with self.assertRaises(res, msg=f'Expected {res} for {data} in {dtype}'):
|
|
388
388
|
rowdat_1._dump_numpy_accel(
|
|
389
389
|
[dtype], numpy_row_ids, [(arr, None)],
|
|
390
|
-
)
|
|
390
|
+
)
|
|
391
391
|
|
|
392
392
|
# Pure Python
|
|
393
393
|
if 'mediumint exceeds' in name:
|
|
@@ -396,13 +396,13 @@ class TestRowdat1(unittest.TestCase):
|
|
|
396
396
|
with self.assertRaises(res, msg=f'Expected {res} for {data} in {dtype}'):
|
|
397
397
|
rowdat_1._dump_numpy(
|
|
398
398
|
[dtype], numpy_row_ids, [(arr, None)],
|
|
399
|
-
)
|
|
399
|
+
)
|
|
400
400
|
|
|
401
401
|
else:
|
|
402
402
|
# Accelerated
|
|
403
403
|
dump_res = rowdat_1._dump_numpy_accel(
|
|
404
404
|
[dtype], numpy_row_ids, [(arr, None)],
|
|
405
|
-
)
|
|
405
|
+
)
|
|
406
406
|
load_res = rowdat_1._load_numpy_accel([('x', dtype)], dump_res)
|
|
407
407
|
assert load_res[1][0][0] == res, \
|
|
408
408
|
f'Expected {res} for {data}, but got {load_res[1][0][0]} in {dtype}'
|
|
@@ -410,7 +410,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
410
410
|
# Pure Python
|
|
411
411
|
dump_res = rowdat_1._dump_numpy(
|
|
412
412
|
[dtype], numpy_row_ids, [(arr, None)],
|
|
413
|
-
)
|
|
413
|
+
)
|
|
414
414
|
load_res = rowdat_1._load_numpy([('x', dtype)], dump_res)
|
|
415
415
|
assert load_res[1][0][0] == res, \
|
|
416
416
|
f'Expected {res} for {data}, but got {load_res[1][0][0]} in {dtype}'
|
|
@@ -788,7 +788,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
788
788
|
# Accelerated
|
|
789
789
|
dump_res = rowdat_1._dump_numpy_accel(
|
|
790
790
|
[dtype], numpy_row_ids, [(data, None)],
|
|
791
|
-
)
|
|
791
|
+
)
|
|
792
792
|
load_res = rowdat_1._load_numpy_accel([('x', dtype)], dump_res)
|
|
793
793
|
|
|
794
794
|
if name == 'double from float32':
|
|
@@ -800,7 +800,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
800
800
|
# Pure Python
|
|
801
801
|
dump_res = rowdat_1._dump_numpy(
|
|
802
802
|
[dtype], numpy_row_ids, [(data, None)],
|
|
803
|
-
)
|
|
803
|
+
)
|
|
804
804
|
load_res = rowdat_1._load_numpy([('x', dtype)], dump_res)
|
|
805
805
|
|
|
806
806
|
if name == 'double from float32':
|
|
@@ -812,7 +812,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
812
812
|
def test_python(self):
|
|
813
813
|
dump_res = rowdat_1._dump(
|
|
814
814
|
col_types, py_row_ids, py_col_data,
|
|
815
|
-
)
|
|
815
|
+
)
|
|
816
816
|
load_res = rowdat_1._load(col_spec, dump_res)
|
|
817
817
|
|
|
818
818
|
ids = load_res[0]
|
|
@@ -824,7 +824,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
824
824
|
def test_python_accel(self):
|
|
825
825
|
dump_res = rowdat_1._dump_accel(
|
|
826
826
|
col_types, py_row_ids, py_col_data,
|
|
827
|
-
)
|
|
827
|
+
)
|
|
828
828
|
load_res = rowdat_1._load_accel(col_spec, dump_res)
|
|
829
829
|
|
|
830
830
|
ids = load_res[0]
|
|
@@ -836,7 +836,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
836
836
|
def test_polars(self):
|
|
837
837
|
dump_res = rowdat_1._dump_polars(
|
|
838
838
|
col_types, polars_row_ids, polars_data,
|
|
839
|
-
)
|
|
839
|
+
)
|
|
840
840
|
load_res = rowdat_1._load_polars(col_spec, dump_res)
|
|
841
841
|
|
|
842
842
|
ids = load_res[0]
|
|
@@ -861,7 +861,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
861
861
|
def test_polars_accel(self):
|
|
862
862
|
dump_res = rowdat_1._dump_polars_accel(
|
|
863
863
|
col_types, polars_row_ids, polars_data,
|
|
864
|
-
)
|
|
864
|
+
)
|
|
865
865
|
load_res = rowdat_1._load_polars_accel(col_spec, dump_res)
|
|
866
866
|
|
|
867
867
|
ids = load_res[0]
|
|
@@ -886,7 +886,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
886
886
|
def test_pandas(self):
|
|
887
887
|
dump_res = rowdat_1._dump_pandas(
|
|
888
888
|
col_types, pandas_row_ids, pandas_data,
|
|
889
|
-
)
|
|
889
|
+
)
|
|
890
890
|
load_res = rowdat_1._load_pandas(col_spec, dump_res)
|
|
891
891
|
|
|
892
892
|
ids = load_res[0]
|
|
@@ -911,7 +911,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
911
911
|
def test_pandas_accel(self):
|
|
912
912
|
dump_res = rowdat_1._dump_pandas_accel(
|
|
913
913
|
col_types, pandas_row_ids, pandas_data,
|
|
914
|
-
)
|
|
914
|
+
)
|
|
915
915
|
load_res = rowdat_1._load_pandas_accel(col_spec, dump_res)
|
|
916
916
|
|
|
917
917
|
ids = load_res[0]
|
|
@@ -936,7 +936,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
936
936
|
def test_pyarrow(self):
|
|
937
937
|
dump_res = rowdat_1._dump_arrow(
|
|
938
938
|
col_types, pyarrow_row_ids, pyarrow_data,
|
|
939
|
-
)
|
|
939
|
+
)
|
|
940
940
|
load_res = rowdat_1._load_arrow(col_spec, dump_res)
|
|
941
941
|
|
|
942
942
|
ids = load_res[0]
|
|
@@ -961,7 +961,7 @@ class TestRowdat1(unittest.TestCase):
|
|
|
961
961
|
def test_pyarrow_accel(self):
|
|
962
962
|
dump_res = rowdat_1._dump_arrow_accel(
|
|
963
963
|
col_types, pyarrow_row_ids, pyarrow_data,
|
|
964
|
-
)
|
|
964
|
+
)
|
|
965
965
|
load_res = rowdat_1._load_arrow_accel(col_spec, dump_res)
|
|
966
966
|
|
|
967
967
|
ids = load_res[0]
|
|
@@ -1053,7 +1053,7 @@ class TestJSON(unittest.TestCase):
|
|
|
1053
1053
|
def test_pandas(self):
|
|
1054
1054
|
dump_res = rowdat_1._dump_pandas(
|
|
1055
1055
|
col_types, pandas_row_ids, pandas_data,
|
|
1056
|
-
)
|
|
1056
|
+
)
|
|
1057
1057
|
load_res = rowdat_1._load_pandas(col_spec, dump_res)
|
|
1058
1058
|
|
|
1059
1059
|
ids = load_res[0]
|
|
@@ -1078,7 +1078,7 @@ class TestJSON(unittest.TestCase):
|
|
|
1078
1078
|
def test_pyarrow(self):
|
|
1079
1079
|
dump_res = rowdat_1._dump_arrow(
|
|
1080
1080
|
col_types, pyarrow_row_ids, pyarrow_data,
|
|
1081
|
-
)
|
|
1081
|
+
)
|
|
1082
1082
|
load_res = rowdat_1._load_arrow(col_spec, dump_res)
|
|
1083
1083
|
|
|
1084
1084
|
ids = load_res[0]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
singlestoredb/__init__.py,sha256=
|
|
1
|
+
singlestoredb/__init__.py,sha256=du9fYfdFzwLGCCtsd8zQ0EK1P5GTZex-vbq_tAxpJyQ,2272
|
|
2
2
|
singlestoredb/auth.py,sha256=u8D9tpKzrqa4ssaHjyZnGDX1q8XBpGtuoOkTkSv7B28,7599
|
|
3
3
|
singlestoredb/config.py,sha256=aBdMrPEaNSH-QLi1AXoQaSJsZ9f6ZXoFPN-74Trr6sQ,13935
|
|
4
4
|
singlestoredb/connection.py,sha256=ELk3-UpM6RaB993aIt08MydKiiDnejHQ1s8EFiacrAI,46055
|
|
@@ -148,7 +148,7 @@ singlestoredb/tests/test_connection.py,sha256=ax2hBPahn0rFENBbYLoph_JIAR20eYeJLy
|
|
|
148
148
|
singlestoredb/tests/test_dbapi.py,sha256=IKq5Hcwx8WikASP8_AB5fo3TXv7ryWPCVGonoly00gI,652
|
|
149
149
|
singlestoredb/tests/test_exceptions.py,sha256=tfr_8X2w1UmG4nkSBzWGB0C7ehrf1GAVgj6_ODaG-TM,1131
|
|
150
150
|
singlestoredb/tests/test_ext_func.py,sha256=_YREceW1Llwx9Wcamj0up2IXLuBTnuvQqCFOWphckKI,46271
|
|
151
|
-
singlestoredb/tests/test_ext_func_data.py,sha256=
|
|
151
|
+
singlestoredb/tests/test_ext_func_data.py,sha256=kyNklkX1RxSiahI0LZjpqhg3LGDs0iwv8iHuXW3AcSo,47515
|
|
152
152
|
singlestoredb/tests/test_fusion.py,sha256=7YQ_nOQoV_7yD4OEpJz2Ov-zok-cBFK9IOJ3FgZ0xo0,50593
|
|
153
153
|
singlestoredb/tests/test_http.py,sha256=RXasTqBWRn__omj0eLFTJYIbZjd0PPdIV2d4Cqz0MC8,8580
|
|
154
154
|
singlestoredb/tests/test_management.py,sha256=R5g5QHWCSPxCrwMUOD0BL-touGIDvqQfDve-YmZyhX4,51973
|
|
@@ -172,9 +172,9 @@ singlestoredb/utils/results.py,sha256=bJtaUaDiFq26IsPAKZ2FHGB7csMn94EAxLKrP4HaEE
|
|
|
172
172
|
singlestoredb/utils/xdict.py,sha256=S9HKgrPrnu_6b7iOwa2KrW8CmU1Uqx0BWdEyogFzWbE,12896
|
|
173
173
|
sqlx/__init__.py,sha256=aBYiU8DZXCogvWu3yWafOz7bZS5WWwLZXj7oL0dXGyU,85
|
|
174
174
|
sqlx/magic.py,sha256=JsS9_9aBFaOt91Torm1JPN0c8qB2QmYJmNSKtbSQIY0,3509
|
|
175
|
-
singlestoredb-1.15.
|
|
176
|
-
singlestoredb-1.15.
|
|
177
|
-
singlestoredb-1.15.
|
|
178
|
-
singlestoredb-1.15.
|
|
179
|
-
singlestoredb-1.15.
|
|
180
|
-
singlestoredb-1.15.
|
|
175
|
+
singlestoredb-1.15.3.dist-info/LICENSE,sha256=Mlq78idURT-9G026aMYswwwnnrLcgzTLuXeAs5hjDLM,11341
|
|
176
|
+
singlestoredb-1.15.3.dist-info/METADATA,sha256=pkmAIWw3oeCYb8WEzItmKntdUX4zFvsiPu4CQstjK80,5786
|
|
177
|
+
singlestoredb-1.15.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
178
|
+
singlestoredb-1.15.3.dist-info/entry_points.txt,sha256=bSLaTWB5zGjpVYPAaI46MkkDup0su-eb3uAhCNYuRV0,48
|
|
179
|
+
singlestoredb-1.15.3.dist-info/top_level.txt,sha256=DfFGz7bM4XrshloiCeTABgylT3BUnS8T5pJam3ewT6Q,19
|
|
180
|
+
singlestoredb-1.15.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|