clickhouse-driver 0.2.5__cp39-cp39-musllinux_1_1_i686.whl → 0.2.7__cp39-cp39-musllinux_1_1_i686.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 clickhouse-driver might be problematic. Click here for more details.
- clickhouse_driver/__init__.py +1 -1
- clickhouse_driver/block.py +3 -2
- clickhouse_driver/bufferedreader.cpython-39-i386-linux-gnu.so +0 -0
- clickhouse_driver/bufferedwriter.cpython-39-i386-linux-gnu.so +0 -0
- clickhouse_driver/client.py +120 -16
- clickhouse_driver/clientinfo.py +2 -2
- clickhouse_driver/columns/arraycolumn.py +15 -6
- clickhouse_driver/columns/base.py +71 -7
- clickhouse_driver/columns/datecolumn.py +2 -2
- clickhouse_driver/columns/jsoncolumn.py +37 -0
- clickhouse_driver/columns/largeint.cpython-39-i386-linux-gnu.so +0 -0
- clickhouse_driver/columns/lowcardinalitycolumn.py +23 -4
- clickhouse_driver/columns/mapcolumn.py +6 -2
- clickhouse_driver/columns/nestedcolumn.py +2 -13
- clickhouse_driver/columns/numpy/datetimecolumn.py +16 -16
- clickhouse_driver/columns/numpy/lowcardinalitycolumn.py +2 -2
- clickhouse_driver/columns/service.py +12 -2
- clickhouse_driver/columns/tuplecolumn.py +31 -5
- clickhouse_driver/columns/uuidcolumn.py +1 -1
- clickhouse_driver/connection.py +104 -15
- clickhouse_driver/defines.py +9 -1
- clickhouse_driver/log.py +7 -3
- clickhouse_driver/progress.py +8 -2
- clickhouse_driver/settings/writer.py +7 -2
- clickhouse_driver/streams/native.py +18 -6
- clickhouse_driver/util/compat.py +12 -0
- clickhouse_driver/util/escape.py +35 -7
- clickhouse_driver/varint.cpython-39-i386-linux-gnu.so +0 -0
- {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/METADATA +7 -8
- {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/RECORD +69 -68
- {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/WHEEL +1 -1
- {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/LICENSE +0 -0
- {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/top_level.txt +0 -0
clickhouse_driver/util/escape.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
from datetime import date, datetime
|
|
1
|
+
from datetime import date, datetime, time
|
|
2
2
|
from enum import Enum
|
|
3
|
+
from functools import wraps
|
|
3
4
|
from uuid import UUID
|
|
4
5
|
|
|
5
6
|
from pytz import timezone
|
|
@@ -28,7 +29,24 @@ def escape_datetime(item, context):
|
|
|
28
29
|
return "'%s'" % item.strftime('%Y-%m-%d %H:%M:%S')
|
|
29
30
|
|
|
30
31
|
|
|
31
|
-
def
|
|
32
|
+
def maybe_enquote_for_server(f):
|
|
33
|
+
@wraps(f)
|
|
34
|
+
def wrapper(*args, **kwargs):
|
|
35
|
+
rv = f(*args, **kwargs)
|
|
36
|
+
|
|
37
|
+
if kwargs.get('for_server'):
|
|
38
|
+
is_str = isinstance(rv, str)
|
|
39
|
+
|
|
40
|
+
if not is_str or (is_str and not rv.startswith("'")):
|
|
41
|
+
rv = "'%s'" % rv
|
|
42
|
+
|
|
43
|
+
return rv
|
|
44
|
+
|
|
45
|
+
return wrapper
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
@maybe_enquote_for_server
|
|
49
|
+
def escape_param(item, context, for_server=False):
|
|
32
50
|
if item is None:
|
|
33
51
|
return 'NULL'
|
|
34
52
|
|
|
@@ -38,17 +56,27 @@ def escape_param(item, context):
|
|
|
38
56
|
elif isinstance(item, date):
|
|
39
57
|
return "'%s'" % item.strftime('%Y-%m-%d')
|
|
40
58
|
|
|
59
|
+
elif isinstance(item, time):
|
|
60
|
+
return "'%s'" % item.strftime('%H:%M:%S')
|
|
61
|
+
|
|
41
62
|
elif isinstance(item, str):
|
|
63
|
+
# We need double escaping for server-side parameters.
|
|
64
|
+
if for_server:
|
|
65
|
+
item = ''.join(escape_chars_map.get(c, c) for c in item)
|
|
42
66
|
return "'%s'" % ''.join(escape_chars_map.get(c, c) for c in item)
|
|
43
67
|
|
|
44
68
|
elif isinstance(item, list):
|
|
45
|
-
return "[%s]" % ', '.join(
|
|
69
|
+
return "[%s]" % ', '.join(
|
|
70
|
+
str(escape_param(x, context, for_server=for_server)) for x in item
|
|
71
|
+
)
|
|
46
72
|
|
|
47
73
|
elif isinstance(item, tuple):
|
|
48
|
-
return "(%s)" % ', '.join(
|
|
74
|
+
return "(%s)" % ', '.join(
|
|
75
|
+
str(escape_param(x, context, for_server=for_server)) for x in item
|
|
76
|
+
)
|
|
49
77
|
|
|
50
78
|
elif isinstance(item, Enum):
|
|
51
|
-
return escape_param(item.value, context)
|
|
79
|
+
return escape_param(item.value, context, for_server=for_server)
|
|
52
80
|
|
|
53
81
|
elif isinstance(item, UUID):
|
|
54
82
|
return "'%s'" % str(item)
|
|
@@ -57,10 +85,10 @@ def escape_param(item, context):
|
|
|
57
85
|
return item
|
|
58
86
|
|
|
59
87
|
|
|
60
|
-
def escape_params(params, context):
|
|
88
|
+
def escape_params(params, context, for_server=False):
|
|
61
89
|
escaped = {}
|
|
62
90
|
|
|
63
91
|
for key, value in params.items():
|
|
64
|
-
escaped[key] = escape_param(value, context)
|
|
92
|
+
escaped[key] = escape_param(value, context, for_server=for_server)
|
|
65
93
|
|
|
66
94
|
return escaped
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: clickhouse-driver
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
4
4
|
Summary: Python driver with native interface for ClickHouse
|
|
5
5
|
Home-page: https://github.com/mymarilyn/clickhouse-driver
|
|
6
6
|
Author: Konstantin Lebedev
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Operating System :: OS Independent
|
|
18
18
|
Classifier: Programming Language :: SQL
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.7
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.8
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -30,20 +29,20 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
30
29
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
31
30
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
32
31
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
33
|
-
Requires-Python: >=3.
|
|
32
|
+
Requires-Python: >=3.7, <4
|
|
34
33
|
License-File: LICENSE
|
|
35
34
|
Requires-Dist: pytz
|
|
36
35
|
Requires-Dist: tzlocal
|
|
37
36
|
Provides-Extra: lz4
|
|
38
|
-
Requires-Dist: clickhouse-cityhash
|
|
37
|
+
Requires-Dist: clickhouse-cityhash >=1.0.2.1 ; extra == 'lz4'
|
|
39
38
|
Requires-Dist: lz4 ; (implementation_name != "pypy") and extra == 'lz4'
|
|
40
|
-
Requires-Dist: lz4
|
|
39
|
+
Requires-Dist: lz4 <=3.0.1 ; (implementation_name == "pypy") and extra == 'lz4'
|
|
41
40
|
Provides-Extra: numpy
|
|
42
|
-
Requires-Dist: numpy
|
|
43
|
-
Requires-Dist: pandas
|
|
41
|
+
Requires-Dist: numpy >=1.12.0 ; extra == 'numpy'
|
|
42
|
+
Requires-Dist: pandas >=0.24.0 ; extra == 'numpy'
|
|
44
43
|
Provides-Extra: zstd
|
|
45
44
|
Requires-Dist: zstd ; extra == 'zstd'
|
|
46
|
-
Requires-Dist: clickhouse-cityhash
|
|
45
|
+
Requires-Dist: clickhouse-cityhash >=1.0.2.1 ; extra == 'zstd'
|
|
47
46
|
|
|
48
47
|
ClickHouse Python Driver
|
|
49
48
|
========================
|
|
@@ -1,88 +1,89 @@
|
|
|
1
|
-
clickhouse_driver-0.2.5.dist-info/top_level.txt,sha256=PrE0Lrs4d-gRQwzABaABfym9Qvr4nN6uTrDy6Q7zQME,18
|
|
2
|
-
clickhouse_driver-0.2.5.dist-info/METADATA,sha256=nC1uew-TKXzVjKKB_kGUyjqA6NFctlXw1mrS5exVDFw,6149
|
|
3
|
-
clickhouse_driver-0.2.5.dist-info/LICENSE,sha256=b2SjNa4zGQk6XzJwmeE1dQjjtWRvX_zxJIAl_ZbN_S8,1143
|
|
4
|
-
clickhouse_driver-0.2.5.dist-info/RECORD,,
|
|
5
|
-
clickhouse_driver-0.2.5.dist-info/WHEEL,sha256=i0nLxgVfxEIksNWLz40TpkguXP1KXEHRTsiLzGSpBXI,109
|
|
6
|
-
clickhouse_driver/clientinfo.py,sha256=GOKnajfWPaRL0-gXFZ1T3eqbXYIVoelTK_PqpjcW_RY,4242
|
|
7
|
-
clickhouse_driver/bufferedwriter.cpython-39-i386-linux-gnu.so,sha256=efDLT89aezrb1IvY69gzSWSRvlSg6wgbkyHVHw49w1Q,640212
|
|
8
|
-
clickhouse_driver/writer.py,sha256=yf5f1vTr56YFtL-Swpi_jBsPw5bQS56j53joB0Acdyk,1286
|
|
9
|
-
clickhouse_driver/protocol.py,sha256=ZRJuawN_v8wXFrHrcpSiBqu7idKsPd3tQnCcDuTlIw8,2561
|
|
10
1
|
clickhouse_driver/queryprocessingstage.py,sha256=lbV-bB5jWUp0hqYBTsUcRYkJhCgCTfN2G21AykMoAp0,186
|
|
11
|
-
clickhouse_driver/
|
|
12
|
-
clickhouse_driver/
|
|
13
|
-
clickhouse_driver/opentelemetry.py,sha256=GIzHCxdB8LB1ozXtUjIpxsdznmRABAts64G2u2l4C_A,1622
|
|
2
|
+
clickhouse_driver/progress.py,sha256=MagDPiLzWG-2Arecu5O6JlK98242ayt9yPa9H7v9o5k,1288
|
|
3
|
+
clickhouse_driver/reader.py,sha256=PWKOKwjszu0sJbG-dd_TyGn8tQAzxg2gCJVbz27G3-8,1322
|
|
14
4
|
clickhouse_driver/readhelpers.py,sha256=tXOmSL9GSeHLdKE2yBlk0epfy-hGJ3bTOLq3Q6sXIkw,717
|
|
15
|
-
clickhouse_driver/
|
|
16
|
-
clickhouse_driver/
|
|
5
|
+
clickhouse_driver/opentelemetry.py,sha256=GIzHCxdB8LB1ozXtUjIpxsdznmRABAts64G2u2l4C_A,1622
|
|
6
|
+
clickhouse_driver/defines.py,sha256=hXIR10BvH_sxUN35pk-f-VeIbM7CA0Ll2B2yNuAy10A,1958
|
|
7
|
+
clickhouse_driver/errors.py,sha256=mffBg-Y2LFOSRzvE9V34RwFcvmfh67yqLeEBhrdjeXE,14343
|
|
8
|
+
clickhouse_driver/log.py,sha256=P9VS_YDY3a4JQsNOeUNNK0L1AAallTC1GF4FG5gCrac,1091
|
|
9
|
+
clickhouse_driver/blockstreamprofileinfo.py,sha256=nYx9QXWAS8aPiRbtAzwLRT5JIlJ8S103JMkudncwpFg,712
|
|
10
|
+
clickhouse_driver/protocol.py,sha256=ZRJuawN_v8wXFrHrcpSiBqu7idKsPd3tQnCcDuTlIw8,2561
|
|
11
|
+
clickhouse_driver/bufferedwriter.cpython-39-i386-linux-gnu.so,sha256=CTeBAytQkjQ8da9Tl5i9JuQFhku9U2DrfmBms-PqspQ,736200
|
|
17
12
|
clickhouse_driver/result.py,sha256=RpjBUvRQJ70xISye7u6gxgQBJwc2UkNuusLkaZF7SmM,4098
|
|
18
|
-
clickhouse_driver/bufferedreader.cpython-39-i386-linux-gnu.so,sha256=
|
|
13
|
+
clickhouse_driver/bufferedreader.cpython-39-i386-linux-gnu.so,sha256=AMIHRt_sti6Vqu9YhsapZXz2JPYLdYhFwkQ40xzZkRs,735688
|
|
14
|
+
clickhouse_driver/varint.cpython-39-i386-linux-gnu.so,sha256=U36O9UQem4UxgllRCIqFnoTFrLOVoL8rmo9W5AE9vWc,263752
|
|
15
|
+
clickhouse_driver/__init__.py,sha256=Zc8GO1dmRR77BGXAzQx9tuX5pBumMtqQzQ4SH3xmBfU,158
|
|
16
|
+
clickhouse_driver/writer.py,sha256=yf5f1vTr56YFtL-Swpi_jBsPw5bQS56j53joB0Acdyk,1286
|
|
19
17
|
clickhouse_driver/context.py,sha256=yPkJ_BN4LGODvKCOjNlDGqABwxAMQTQl7w1vIGRPBDg,909
|
|
20
|
-
clickhouse_driver/
|
|
21
|
-
clickhouse_driver/
|
|
22
|
-
clickhouse_driver/
|
|
23
|
-
clickhouse_driver/
|
|
24
|
-
clickhouse_driver/reader.py,sha256=PWKOKwjszu0sJbG-dd_TyGn8tQAzxg2gCJVbz27G3-8,1322
|
|
25
|
-
clickhouse_driver/log.py,sha256=VLeOYXn5DW2hJ53m2w5bPsMrWG5cWnq5whE4e6euK_M,888
|
|
26
|
-
clickhouse_driver/client.py,sha256=QY_ZqBGQwpXJQ3h9tHg3vKzJdl7kAa45AyJnBeVNUJ8,30231
|
|
27
|
-
clickhouse_driver/settings/writer.py,sha256=lvCfMJ62l1adlNBDRRbhwv9vYrda2yveh34d4mCGwHg,1064
|
|
28
|
-
clickhouse_driver/settings/available.py,sha256=8b1YUjt-_6gO9Cio02VZSMPdhM70zk-NMhE4f_jwFx8,16613
|
|
29
|
-
clickhouse_driver/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
clickhouse_driver/settings/types.py,sha256=u_A3FzREqIjj4OSEdKUwm1Xn8jEnGpp-9AvqbcE2G8s,1108
|
|
31
|
-
clickhouse_driver/streams/native.py,sha256=n6_lOgdgrniMvew7dNVE0IDWIJWKrULc-my6bciSTmo,2728
|
|
32
|
-
clickhouse_driver/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
clickhouse_driver/block.py,sha256=t2zZhtCzwp4aJj0CuDqXlDEgHXgwc6GRsIks2aaIZvI,6311
|
|
19
|
+
clickhouse_driver/clientinfo.py,sha256=Tw3NbuDHglT6_f0AcT0IdhqW_hVePtzh9pypx5nk5ZE,4260
|
|
20
|
+
clickhouse_driver/client.py,sha256=Zk_gnfqOSz1_3uaTsBLtOHNGX0rsiklJUPpk-1aqnXQ,34707
|
|
21
|
+
clickhouse_driver/connection.py,sha256=Lzx6bjPDEZleEtFaede4_BcRmALIbJyQLymSmj7zAHY,28399
|
|
33
22
|
clickhouse_driver/streams/compressed.py,sha256=eyFCuq_sLX6oJLQ_h1QX3IB9IgUx56pPqPfhmeiA6ag,2865
|
|
34
|
-
clickhouse_driver/
|
|
35
|
-
clickhouse_driver/
|
|
23
|
+
clickhouse_driver/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
clickhouse_driver/streams/native.py,sha256=2qAs5deUU4NwLG3zQAyxNwGsKmJO41-qlTRKGRFSAJA,3316
|
|
25
|
+
clickhouse_driver/compression/lz4hc.py,sha256=zGbj9vnM20W298kgzD0dIAgIeV30e5Kx8NSN8t4SDas,195
|
|
26
|
+
clickhouse_driver/compression/zstd.py,sha256=yzI1UwKkAudCzvHcznSIRlbAYeGeR3k6xux4hReCnBc,531
|
|
27
|
+
clickhouse_driver/compression/lz4.py,sha256=ZTf1zn0uG26O29XHBBZeve26JLPNbbEWWMZe065oa0Y,631
|
|
28
|
+
clickhouse_driver/compression/base.py,sha256=MCTK2aOGT3Lkso5r3-U-ilj2ln4r-nnfNI_2Ostsu6Q,2434
|
|
29
|
+
clickhouse_driver/compression/__init__.py,sha256=_XcKSkvWWPvEX4jeefYX1Alee58w6ktFOXrsIFRko_0,714
|
|
36
30
|
clickhouse_driver/dbapi/errors.py,sha256=yv2SDIK-ZlWmIxBoF5_igfHRyh9zTUJSgAj9g8S4cXo,440
|
|
37
|
-
clickhouse_driver/dbapi/
|
|
31
|
+
clickhouse_driver/dbapi/cursor.py,sha256=MOtVhXVkDYxXTAM_AeesKxrcsR64Rt2tRYVmsWLM_tQ,10517
|
|
38
32
|
clickhouse_driver/dbapi/__init__.py,sha256=Ouv2PV7d6nlY7yBYu71rOfy_JBM7POoG-wPH8kGu0q0,1759
|
|
39
|
-
clickhouse_driver/
|
|
40
|
-
clickhouse_driver/
|
|
41
|
-
clickhouse_driver/
|
|
42
|
-
clickhouse_driver/
|
|
43
|
-
clickhouse_driver/
|
|
44
|
-
clickhouse_driver/
|
|
45
|
-
clickhouse_driver/
|
|
46
|
-
clickhouse_driver/
|
|
47
|
-
clickhouse_driver/
|
|
48
|
-
clickhouse_driver/
|
|
33
|
+
clickhouse_driver/dbapi/connection.py,sha256=VZ27YhRnr4VhKxiFbLFhdeQ-0Nb0IRyZRZ0f0_wrkPU,3032
|
|
34
|
+
clickhouse_driver/dbapi/extras.py,sha256=je1tjk6gb-QqLMoWu_iXCqhJK159vyyHsCB_8vXkXyw,2129
|
|
35
|
+
clickhouse_driver/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
clickhouse_driver/settings/writer.py,sha256=x0FVdbKZR9lN-hXAT2xxkoqvGo1ojvWWwyP3NaI7ZDA,1099
|
|
37
|
+
clickhouse_driver/settings/types.py,sha256=u_A3FzREqIjj4OSEdKUwm1Xn8jEnGpp-9AvqbcE2G8s,1108
|
|
38
|
+
clickhouse_driver/settings/available.py,sha256=8b1YUjt-_6gO9Cio02VZSMPdhM70zk-NMhE4f_jwFx8,16613
|
|
39
|
+
clickhouse_driver/numpy/helpers.py,sha256=jKiZ3GOp1G5Q2Y-6S_YG9t9RtdSLa-AH1grz71OWyS0,704
|
|
40
|
+
clickhouse_driver/numpy/result.py,sha256=D-7IsaIt0u4WJ8iSzXYBB0OiPgPu5ptu-1HiJvTW-No,3563
|
|
41
|
+
clickhouse_driver/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
clickhouse_driver/numpy/block.py,sha256=k8CqQxaVSviZvicS03exPZG_LFwbzB5-NnLB2EuBKgQ,180
|
|
49
43
|
clickhouse_driver/columns/exceptions.py,sha256=vrZMZ9ORRP7RSSd34azM_xFaeMaaYbwy6h6ZCeFNbIg,163
|
|
50
|
-
clickhouse_driver/columns/
|
|
44
|
+
clickhouse_driver/columns/nestedcolumn.py,sha256=7x3xNYR22kEmgV4_3rPVZea2zCTU364O1tlOewMgw3M,303
|
|
45
|
+
clickhouse_driver/columns/arraycolumn.py,sha256=UiA48jw3o4-ert8BnzEbl2h1jVmtDH3jtcP1BTPru2w,5322
|
|
46
|
+
clickhouse_driver/columns/uuidcolumn.py,sha256=7CLPxsHJtV6Zt9jxILSkE0LAwffloLmrjjbwCZH34mA,1865
|
|
51
47
|
clickhouse_driver/columns/util.py,sha256=5DRGBsWSTldqZRZJ53J85zh_jepkwkAsYXhAeDJQW4I,1395
|
|
48
|
+
clickhouse_driver/columns/nullablecolumn.py,sha256=HF4AyX2UIb6qGqe4aY_Tdcjf1ddisPO2QYte3PCIaRU,169
|
|
52
49
|
clickhouse_driver/columns/boolcolumn.py,sha256=QgVCqbZWoFD1yvpppc92iiXIzReCVEh692efNSNH4UE,127
|
|
53
|
-
clickhouse_driver/columns/
|
|
54
|
-
clickhouse_driver/columns/
|
|
55
|
-
clickhouse_driver/columns/
|
|
56
|
-
clickhouse_driver/columns/
|
|
50
|
+
clickhouse_driver/columns/simpleaggregatefunctioncolumn.py,sha256=zDWBd_Hc7AktHFZ5JY7SwxIk7G4WBHdJdcPBqihe7q0,235
|
|
51
|
+
clickhouse_driver/columns/nothingcolumn.py,sha256=O1a1K17tPw5DYH49gBQq9urrmm0plDJ34YD2s2y6dhg,259
|
|
52
|
+
clickhouse_driver/columns/lowcardinalitycolumn.py,sha256=vMlhYYUPNmFhQiUAS77pE25KjI8TrO6ySz6w0ByBdZQ,4920
|
|
53
|
+
clickhouse_driver/columns/mapcolumn.py,sha256=tKr9R0JvW1_7ExKs7XfRhHI6Z6UgBW76A0jaCMM_TLk,2084
|
|
54
|
+
clickhouse_driver/columns/jsoncolumn.py,sha256=SeCLSrmRoEg9wlvoehs7-EmrV8XkOL3lknzeOORhbJg,1175
|
|
55
|
+
clickhouse_driver/columns/largeint.cpython-39-i386-linux-gnu.so,sha256=QhKpD69WWO4pX73S_Zg5XCsdYH2Oc_MLJBR-EaIlf4k,614804
|
|
56
|
+
clickhouse_driver/columns/enumcolumn.py,sha256=GCSW-fjtJC4_5YKo9oKtG8GT9UhLcRWCjrBVhEAUp-A,3219
|
|
57
57
|
clickhouse_driver/columns/intcolumn.py,sha256=ntpxyMiu44VQYJ0HyHlglwxMgUtnIgf3JE9LUD9Xwwc,3519
|
|
58
|
-
clickhouse_driver/columns/
|
|
59
|
-
clickhouse_driver/columns/tuplecolumn.py,sha256=jP4ZmpTLemIxEY9t40FF30rrhCj2CGfI5yW6iCrspNQ,1149
|
|
60
|
-
clickhouse_driver/columns/base.py,sha256=i1yyYgevq-MQeo42cRuVRTsqBOU53jm1e25WwiJwO2o,4510
|
|
58
|
+
clickhouse_driver/columns/datecolumn.py,sha256=FzgS5ayxW6zfyM5qD1NXXiR4PTKz0tXEC48TwtQvbyI,1929
|
|
61
59
|
clickhouse_driver/columns/intervalcolumn.py,sha256=oQeybb4qrcp07LeVYfqgeZuHYGH5RaY7KnWVoIsDe1I,600
|
|
60
|
+
clickhouse_driver/columns/datetimecolumn.py,sha256=pO8g1exACp6EfUO0prra5X3T_gg1MJ8bSoi5Rt2Vxjg,6691
|
|
61
|
+
clickhouse_driver/columns/floatcolumn.py,sha256=Mci7Fl05dgkpDQRfjGaDP9QraZER5nkYX1lVsTA89Yk,925
|
|
62
|
+
clickhouse_driver/columns/tuplecolumn.py,sha256=DnwtEwVXzm-YyL5-cPe9MiOLOoTEcDhcYeBY6SuuZZQ,2040
|
|
62
63
|
clickhouse_driver/columns/nullcolumn.py,sha256=a8Il310y69JQr-NobcK9WhMAkXlogMvDmJbcueuOozs,331
|
|
64
|
+
clickhouse_driver/columns/ipcolumn.py,sha256=LIt-NiUy70-8u5Amu0v0tlAlrolZ8gXzlFxcJYmjRAk,4095
|
|
65
|
+
clickhouse_driver/columns/base.py,sha256=jRThD8Ol7gwNy3x0M7vvslkm0RDOsCLJqKGf0arsa0w,6504
|
|
66
|
+
clickhouse_driver/columns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
67
|
clickhouse_driver/columns/stringcolumn.py,sha256=C-l7HaReg9AcJGQvgpSH07aV-CZMBP1jKArPHZi8Q2k,2059
|
|
64
|
-
clickhouse_driver/columns/
|
|
65
|
-
clickhouse_driver/columns/
|
|
66
|
-
clickhouse_driver/columns/numpy/datetimecolumn.py,sha256=7hhZvupfKToj4qLMX1-4zRQNbpqIZffklaS0rXmEgoo,4610
|
|
67
|
-
clickhouse_driver/columns/numpy/floatcolumn.py,sha256=WnnlyR3vabh6ixllXwdyQ_t8y5MSqCddImWityxz6pE,599
|
|
68
|
-
clickhouse_driver/columns/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
clickhouse_driver/columns/service.py,sha256=6nIGwvcG-5LErQFn_3a2GRKZI2OnKYsy2oIIMhxJqlc,6181
|
|
69
|
+
clickhouse_driver/columns/decimalcolumn.py,sha256=MBczjN6AtI0jgbVTNguwVE7ZdWql0XuMl-QohxV-sN0,3450
|
|
69
70
|
clickhouse_driver/columns/numpy/boolcolumn.py,sha256=0_RwEroY2-ZqMuxKeTNG27ZCWN_y9BxYZzbuFKeqoQg,140
|
|
70
|
-
clickhouse_driver/columns/numpy/
|
|
71
|
+
clickhouse_driver/columns/numpy/lowcardinalitycolumn.py,sha256=ExYtwBBn6WfSQtWC0f79ZqjdqO3ZJ3IL6KtlQOgMh-k,3368
|
|
71
72
|
clickhouse_driver/columns/numpy/intcolumn.py,sha256=ZzmjvjpEaZ_kk-mGEPdBAqUCjqCgGT8tUEzbQKwUVVA,792
|
|
72
|
-
clickhouse_driver/columns/numpy/
|
|
73
|
+
clickhouse_driver/columns/numpy/datecolumn.py,sha256=xWFsFwiRmszK9A20UWnF4beTE5f8XQDj18x53xtXtSI,482
|
|
74
|
+
clickhouse_driver/columns/numpy/datetimecolumn.py,sha256=XQ3JsxVdAvWJndNek4-i07JO2QJIdUnJQWzOxvF3PMc,4777
|
|
75
|
+
clickhouse_driver/columns/numpy/floatcolumn.py,sha256=WnnlyR3vabh6ixllXwdyQ_t8y5MSqCddImWityxz6pE,599
|
|
73
76
|
clickhouse_driver/columns/numpy/tuplecolumn.py,sha256=5RqhCIZ-CrWy_D0yyfTmlWBJgrunT5Yk-bM4OvIKZ1o,1233
|
|
74
77
|
clickhouse_driver/columns/numpy/base.py,sha256=Wk1ADpoQGWQv5X8sWi0esA2jmQGEoDakXZxImuYM2eM,1410
|
|
78
|
+
clickhouse_driver/columns/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
79
|
clickhouse_driver/columns/numpy/stringcolumn.py,sha256=FH87XPQv3ga0ZJnngubqu4DgxmUt8bjW8xJcNfOU7EI,2439
|
|
76
|
-
clickhouse_driver/
|
|
77
|
-
clickhouse_driver/util/compat.py,sha256=
|
|
78
|
-
clickhouse_driver/util/escape.py,sha256=z12JboQqjt66fMtNWFadWfZamXEZif_UtxgIPn5BPek,1453
|
|
80
|
+
clickhouse_driver/columns/numpy/service.py,sha256=ENk26HPfxtbumcO_b2fGTNJdTgaJT0a-l3q_xrRIZZ4,2126
|
|
81
|
+
clickhouse_driver/util/compat.py,sha256=wIB_6ULSapKx-Fi64lZ0YJ-TtWOQXePHE90wZopIM1I,876
|
|
79
82
|
clickhouse_driver/util/helpers.py,sha256=1oLkkkILXZnEbdjAe2Ags-Y-T-Bq9rk94W6edh-1ZLU,1448
|
|
80
|
-
clickhouse_driver/
|
|
81
|
-
clickhouse_driver/
|
|
82
|
-
clickhouse_driver/
|
|
83
|
-
clickhouse_driver/
|
|
84
|
-
clickhouse_driver/
|
|
85
|
-
clickhouse_driver
|
|
86
|
-
clickhouse_driver/
|
|
87
|
-
clickhouse_driver/numpy/block.py,sha256=k8CqQxaVSviZvicS03exPZG_LFwbzB5-NnLB2EuBKgQ,180
|
|
88
|
-
clickhouse_driver/numpy/helpers.py,sha256=jKiZ3GOp1G5Q2Y-6S_YG9t9RtdSLa-AH1grz71OWyS0,704
|
|
83
|
+
clickhouse_driver/util/escape.py,sha256=4RPfNzC5IvatoZB9llmJM4436XArCXQDEqT_cqdwCBk,2256
|
|
84
|
+
clickhouse_driver/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
clickhouse_driver-0.2.7.dist-info/METADATA,sha256=aQbor1BmjoDfoRvIPRh1m4XHe2Go7rRm2L-zCGde_lM,6089
|
|
86
|
+
clickhouse_driver-0.2.7.dist-info/top_level.txt,sha256=PrE0Lrs4d-gRQwzABaABfym9Qvr4nN6uTrDy6Q7zQME,18
|
|
87
|
+
clickhouse_driver-0.2.7.dist-info/WHEEL,sha256=v-8vN2Z1wRfhJEi3opfRVfxTNuxBOvco3uYBajkO8Zw,109
|
|
88
|
+
clickhouse_driver-0.2.7.dist-info/RECORD,,
|
|
89
|
+
clickhouse_driver-0.2.7.dist-info/LICENSE,sha256=b2SjNa4zGQk6XzJwmeE1dQjjtWRvX_zxJIAl_ZbN_S8,1143
|
|
File without changes
|
|
File without changes
|