crate 0.35.1__py2.py3-none-any.whl → 1.0.0.dev0__py2.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.
Files changed (42) hide show
  1. crate/client/__init__.py +1 -1
  2. crate/testing/test_datetime_old.py +90 -0
  3. crate-1.0.0.dev0-py3.11-nspkg.pth +1 -0
  4. {crate-0.35.1.dist-info → crate-1.0.0.dev0.dist-info}/METADATA +15 -19
  5. crate-1.0.0.dev0.dist-info/RECORD +26 -0
  6. {crate-0.35.1.dist-info → crate-1.0.0.dev0.dist-info}/WHEEL +1 -1
  7. crate/client/sqlalchemy/__init__.py +0 -50
  8. crate/client/sqlalchemy/compat/__init__.py +0 -0
  9. crate/client/sqlalchemy/compat/api13.py +0 -156
  10. crate/client/sqlalchemy/compat/core10.py +0 -264
  11. crate/client/sqlalchemy/compat/core14.py +0 -359
  12. crate/client/sqlalchemy/compat/core20.py +0 -447
  13. crate/client/sqlalchemy/compiler.py +0 -318
  14. crate/client/sqlalchemy/dialect.py +0 -369
  15. crate/client/sqlalchemy/predicates/__init__.py +0 -99
  16. crate/client/sqlalchemy/sa_version.py +0 -28
  17. crate/client/sqlalchemy/support.py +0 -62
  18. crate/client/sqlalchemy/tests/__init__.py +0 -59
  19. crate/client/sqlalchemy/tests/array_test.py +0 -111
  20. crate/client/sqlalchemy/tests/bulk_test.py +0 -256
  21. crate/client/sqlalchemy/tests/compiler_test.py +0 -434
  22. crate/client/sqlalchemy/tests/connection_test.py +0 -129
  23. crate/client/sqlalchemy/tests/create_table_test.py +0 -313
  24. crate/client/sqlalchemy/tests/datetime_test.py +0 -90
  25. crate/client/sqlalchemy/tests/dialect_test.py +0 -156
  26. crate/client/sqlalchemy/tests/dict_test.py +0 -460
  27. crate/client/sqlalchemy/tests/function_test.py +0 -47
  28. crate/client/sqlalchemy/tests/insert_from_select_test.py +0 -85
  29. crate/client/sqlalchemy/tests/match_test.py +0 -137
  30. crate/client/sqlalchemy/tests/query_caching.py +0 -143
  31. crate/client/sqlalchemy/tests/update_test.py +0 -115
  32. crate/client/sqlalchemy/tests/warnings_test.py +0 -64
  33. crate/client/sqlalchemy/types.py +0 -277
  34. crate/client/tests.py +0 -416
  35. crate/testing/tests.py +0 -34
  36. crate-0.35.1-py3.11-nspkg.pth +0 -1
  37. crate-0.35.1.dist-info/RECORD +0 -55
  38. crate-0.35.1.dist-info/entry_points.txt +0 -2
  39. {crate-0.35.1.dist-info → crate-1.0.0.dev0.dist-info}/LICENSE +0 -0
  40. {crate-0.35.1.dist-info → crate-1.0.0.dev0.dist-info}/NOTICE +0 -0
  41. {crate-0.35.1.dist-info → crate-1.0.0.dev0.dist-info}/namespace_packages.txt +0 -0
  42. {crate-0.35.1.dist-info → crate-1.0.0.dev0.dist-info}/top_level.txt +0 -0
crate/testing/tests.py DELETED
@@ -1,34 +0,0 @@
1
- # vi: set encoding=utf-8
2
- # -*- coding: utf-8; -*-
3
- #
4
- # Licensed to CRATE Technology GmbH ("Crate") under one or more contributor
5
- # license agreements. See the NOTICE file distributed with this work for
6
- # additional information regarding copyright ownership. Crate licenses
7
- # this file to you under the Apache License, Version 2.0 (the "License");
8
- # you may not use this file except in compliance with the License. You may
9
- # obtain a copy of the License at
10
- #
11
- # http://www.apache.org/licenses/LICENSE-2.0
12
- #
13
- # Unless required by applicable law or agreed to in writing, software
14
- # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15
- # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16
- # License for the specific language governing permissions and limitations
17
- # under the License.
18
- #
19
- # However, if you have executed another commercial license agreement
20
- # with Crate these terms will supersede the license and you may use the
21
- # software solely pursuant to the terms of the relevant commercial agreement.
22
-
23
- import unittest
24
- from .test_layer import LayerUtilsTest, LayerTest
25
-
26
-
27
- makeSuite = unittest.TestLoader().loadTestsFromTestCase
28
-
29
-
30
- def test_suite():
31
- suite = unittest.TestSuite()
32
- suite.addTest(makeSuite(LayerUtilsTest))
33
- suite.addTest(makeSuite(LayerTest))
34
- return suite
@@ -1 +0,0 @@
1
- import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('crate',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('crate', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('crate', [os.path.dirname(p)])));m = m or sys.modules.setdefault('crate', types.ModuleType('crate'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
@@ -1,55 +0,0 @@
1
- crate-0.35.1-py3.11-nspkg.pth,sha256=nqN0-lx5dVfXKgm9N7WRgI0lrvtTYi2PUOtTjfAMtjY,534
2
- crate/client/__init__.py,sha256=LHT9tJtxatTKbLLcPUdazg25RCrZyZlu89vSIRwgrmA,1305
3
- crate/client/_pep440.py,sha256=iwY5wopxbgbwsT0ImANrwN3V_ZYQHhSr7lEdVT5dQRM,42
4
- crate/client/blob.py,sha256=plTwGEULg5s1VdKIMW6a0Zljdkng7xw0WXkXyiwNaSU,3496
5
- crate/client/connection.py,sha256=5vmtGZF20vxoeExHTeQ-DqJX4BPNT8ebzH_HOvdcqdE,8432
6
- crate/client/converter.py,sha256=9_-FBp8l9LwCfBsoWO0YOW0ASkwJ-le-YJFfJMLKCew,4301
7
- crate/client/cursor.py,sha256=qnrNM9QDQgo9RFVGU7HPmCxK15EFUWiOxW3BNlZcuNw,10758
8
- crate/client/exceptions.py,sha256=RINQtVF9jD5f_tcKpZ8A1haztKilf9HUwjESYx-W1Bk,2242
9
- crate/client/http.py,sha256=aA6L-9i7-UovLKG3ICymRq7S0KPOIZiNejv1jzPrn4A,22559
10
- crate/client/test_connection.py,sha256=sGsnqgpxe9sgD6TllVbQGHozf4Binrzxe_ydfAQJgWE,3670
11
- crate/client/test_cursor.py,sha256=Q9Npq55zTY4g51kf3P7DnmTsYdv0iRwqDptKOj9ffxA,12858
12
- crate/client/test_http.py,sha256=LvUC0QeAhH2-LJDfp2zVT6OEVTG6GKqid6qUTM9rjGY,23534
13
- crate/client/test_util.py,sha256=k8j3Ya1fPwdfrbRkUNsqxqcyoi5Rj7O_r4HpOEdK_yA,2508
14
- crate/client/tests.py,sha256=LcuHSGcfKLKtLeVksqYvB24yYbi7a2nDQ9HWtiK7IgA,13607
15
- crate/client/sqlalchemy/__init__.py,sha256=RKwu3filTgFGaw-X200qaQa89gRutnFaG-vlxjA6elU,1965
16
- crate/client/sqlalchemy/compiler.py,sha256=WwFxULwQ2tJJmXxmtPFCnx9t43qI9YgAAA1GPtkKjJA,11366
17
- crate/client/sqlalchemy/dialect.py,sha256=t59U9Lsoa_Df5X8VgHqmv8pIqOEc6Eg380OZQFwvmz4,13684
18
- crate/client/sqlalchemy/sa_version.py,sha256=NhNA5FUw0Sm5n-fSVo6CTcaioDRovUknFOslX31ir-I,1168
19
- crate/client/sqlalchemy/support.py,sha256=gw3I4UUe2pfpfxeyJka-eETTP_2Dz9LkjmgONnO382E,2589
20
- crate/client/sqlalchemy/types.py,sha256=16n84oRRd65z9zo9UYFmgqWGc_sTbaL3SH9DG8TF2S0,8561
21
- crate/client/sqlalchemy/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- crate/client/sqlalchemy/compat/api13.py,sha256=koqqq48UmAmrjXOyc5lV7gaVEl8xmi5xHUqTBVE5f5s,5687
23
- crate/client/sqlalchemy/compat/core10.py,sha256=7JQZte_PXqK20znpLFJZJR_FbooJ6RJFjPTG5Z6uYWY,8641
24
- crate/client/sqlalchemy/compat/core14.py,sha256=9cAbzR3jexN7x-iFTmr-7OjlfL7fPX4w6tGG-tZGOR4,11611
25
- crate/client/sqlalchemy/compat/core20.py,sha256=GVHzALhSX4WV3PQvltT_RnsGtab5lR92wcs9yRZgbMU,15150
26
- crate/client/sqlalchemy/predicates/__init__.py,sha256=HT7tHF7PxX71G8m91lqpH732iVQZtO8_NPZUIsllcys,3622
27
- crate/client/sqlalchemy/tests/__init__.py,sha256=_jiNdT5ZgpHby6A6qCnxTPy8jbmxZSapGZtTyctwWx0,2666
28
- crate/client/sqlalchemy/tests/array_test.py,sha256=9qGFk2QbtJQYNHALb0P3wOndJosUoSfVVDzBOGs07w4,4052
29
- crate/client/sqlalchemy/tests/bulk_test.py,sha256=evINf8FCZez9OxDAwu-zld811tTZJz9QTfJXpCum63g,10925
30
- crate/client/sqlalchemy/tests/compiler_test.py,sha256=DTuym7LQKSxNPQsoUxrW_GGnt3LqJyDCBoTin462Nr4,18197
31
- crate/client/sqlalchemy/tests/connection_test.py,sha256=LTevZ4oN0FjVTb2K3wweYui3MmnPrsKV__AFKGNGxis,5230
32
- crate/client/sqlalchemy/tests/create_table_test.py,sha256=e2NF3Ze_svl2VIx8i95ghVG2FKZjFlA8vAwQDOVxZb0,12317
33
- crate/client/sqlalchemy/tests/datetime_test.py,sha256=E84Xd-g7kIshKdGQ6J2RMvuao-Od0iCpz11JLfyA5s8,3170
34
- crate/client/sqlalchemy/tests/dialect_test.py,sha256=i0-uVTSOihSTl_BUt2sfu8jrA64kQhfpISDekL9N8l4,6283
35
- crate/client/sqlalchemy/tests/dict_test.py,sha256=Fz-rr5MuTDo_8WfUDDriFIq-2Fl63V68GApFO2_YDpc,16616
36
- crate/client/sqlalchemy/tests/function_test.py,sha256=XQrPW8WKPI_aLgZo9kpfO2Wjx6dWp3ureqtgkghl2xk,1824
37
- crate/client/sqlalchemy/tests/insert_from_select_test.py,sha256=UeSk-34qh_mrZNr4q1uriFI9UxPieFPJ2eKjNhHkEPc,3256
38
- crate/client/sqlalchemy/tests/match_test.py,sha256=BN6jXme5WaleuRKSCMcAJKvESMmCmVdTAmKfIx9wZEI,5203
39
- crate/client/sqlalchemy/tests/query_caching.py,sha256=TkonnAOP-o_oLin4B2fWiJ_PabV84Q2FNgESmvzOzcc,6034
40
- crate/client/sqlalchemy/tests/update_test.py,sha256=FIwWS4o9x69cKMDlTl4IoROwe5aNgw_kecjXrZfoBJo,4163
41
- crate/client/sqlalchemy/tests/warnings_test.py,sha256=F51cXSmAsiwn9O2Vw-BqJjOgAOZN7VTWZaZ0KJLu1ZY,2633
42
- crate/testing/__init__.py,sha256=UnxmjVrk-eNORsitiM48W0pB6yfsaErOak8RYh_ELt8,10
43
- crate/testing/layer.py,sha256=-AvRsTysqncns5IqUFWKZFppC3KwQxDJt0tnBWjxlMs,13382
44
- crate/testing/settings.py,sha256=YTqod79NO4Lv_agPgMLGlB_fMe6baAhLXFKBZnuytBk,1652
45
- crate/testing/test_layer.py,sha256=S0QgY7TgD52EyYWrMoSLUfRVjVzw-oiUdR-g5fJ_zmQ,11512
46
- crate/testing/tests.py,sha256=4YcBkpRnihPHPJnr6wPcmORfzkI7FSVL2TCm4MdzUss,1327
47
- crate/testing/util.py,sha256=qtc72rKfvfTA9VMKjE2JSukffobd7ffCcddoTiAdO6A,690
48
- crate-0.35.1.dist-info/LICENSE,sha256=1QGh4tR_JmDKn33ztoDv2UkER0Q4Zh1kC5J3vMWwRso,12854
49
- crate-0.35.1.dist-info/METADATA,sha256=oTMt5muEtVQucmTJeYNlTG8sMNLS4i58suv0SkD5H40,4902
50
- crate-0.35.1.dist-info/NOTICE,sha256=vwbBS8sykCOndA1kjuu8dUInljH27kk3lcPBzQ2SMns,1159
51
- crate-0.35.1.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
52
- crate-0.35.1.dist-info/entry_points.txt,sha256=6OCASmcKhqQb78E51lphsST207RRt62NgbubENSs70I,67
53
- crate-0.35.1.dist-info/namespace_packages.txt,sha256=2wP2HlpxdhgTLMl9ipi168xkm6FMq9_2bf0xGGxF_OI,6
54
- crate-0.35.1.dist-info/top_level.txt,sha256=2wP2HlpxdhgTLMl9ipi168xkm6FMq9_2bf0xGGxF_OI,6
55
- crate-0.35.1.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [sqlalchemy.dialects]
2
- crate = crate.client.sqlalchemy:CrateDialect