clickhouse-driver 0.2.5__cp38-cp38-win32.whl → 0.2.7__cp38-cp38-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 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.cp38-win32.pyd +0 -0
- clickhouse_driver/bufferedwriter.cp38-win32.pyd +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.cp38-win32.pyd +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.cp38-win32.pyd +0 -0
- {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/METADATA +201 -202
- {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/RECORD +33 -32
- {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,202 +1,201 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: clickhouse-driver
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary: Python driver with native interface for ClickHouse
|
|
5
|
-
Home-page: https://github.com/mymarilyn/clickhouse-driver
|
|
6
|
-
Author: Konstantin Lebedev
|
|
7
|
-
Author-email: kostyan.lebedev@gmail.com
|
|
8
|
-
License: MIT
|
|
9
|
-
Project-URL: Documentation, https://clickhouse-driver.readthedocs.io
|
|
10
|
-
Project-URL: Changes, https://github.com/mymarilyn/clickhouse-driver/blob/master/CHANGELOG.md
|
|
11
|
-
Keywords: ClickHouse db database cloud analytics
|
|
12
|
-
Classifier: Development Status :: 4 - Beta
|
|
13
|
-
Classifier: Environment :: Console
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Intended Audience :: Information Technology
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
-
Classifier: Operating System :: OS Independent
|
|
18
|
-
Classifier: Programming Language :: SQL
|
|
19
|
-
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.
|
|
25
|
-
Classifier: Programming Language :: Python ::
|
|
26
|
-
Classifier:
|
|
27
|
-
Classifier: Topic ::
|
|
28
|
-
Classifier: Topic :: Software Development
|
|
29
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
30
|
-
Classifier: Topic :: Software Development :: Libraries ::
|
|
31
|
-
Classifier: Topic ::
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist: lz4 ; (implementation_name
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
- using
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
>>>
|
|
135
|
-
>>>
|
|
136
|
-
>>>
|
|
137
|
-
>>>
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
... '
|
|
146
|
-
...
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
... '
|
|
153
|
-
... '
|
|
154
|
-
...
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
>>>
|
|
165
|
-
>>>
|
|
166
|
-
>>>
|
|
167
|
-
>>>
|
|
168
|
-
>>>
|
|
169
|
-
>>> cursor.
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
>>> cursor.
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
>>> cursor.
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
... '
|
|
180
|
-
...
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
>>> cursor.
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
... '
|
|
189
|
-
... '
|
|
190
|
-
...
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
>>> cursor.
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
<http://www.opensource.org/licenses/mit-license.php>`_.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: clickhouse-driver
|
|
3
|
+
Version: 0.2.7
|
|
4
|
+
Summary: Python driver with native interface for ClickHouse
|
|
5
|
+
Home-page: https://github.com/mymarilyn/clickhouse-driver
|
|
6
|
+
Author: Konstantin Lebedev
|
|
7
|
+
Author-email: kostyan.lebedev@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Documentation, https://clickhouse-driver.readthedocs.io
|
|
10
|
+
Project-URL: Changes, https://github.com/mymarilyn/clickhouse-driver/blob/master/CHANGELOG.md
|
|
11
|
+
Keywords: ClickHouse db database cloud analytics
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Information Technology
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: SQL
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
26
|
+
Classifier: Topic :: Database
|
|
27
|
+
Classifier: Topic :: Software Development
|
|
28
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
30
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
31
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
32
|
+
Requires-Python: >=3.7, <4
|
|
33
|
+
License-File: LICENSE
|
|
34
|
+
Requires-Dist: pytz
|
|
35
|
+
Requires-Dist: tzlocal
|
|
36
|
+
Provides-Extra: lz4
|
|
37
|
+
Requires-Dist: clickhouse-cityhash >=1.0.2.1 ; extra == 'lz4'
|
|
38
|
+
Requires-Dist: lz4 ; (implementation_name != "pypy") and extra == 'lz4'
|
|
39
|
+
Requires-Dist: lz4 <=3.0.1 ; (implementation_name == "pypy") and extra == 'lz4'
|
|
40
|
+
Provides-Extra: numpy
|
|
41
|
+
Requires-Dist: numpy >=1.12.0 ; extra == 'numpy'
|
|
42
|
+
Requires-Dist: pandas >=0.24.0 ; extra == 'numpy'
|
|
43
|
+
Provides-Extra: zstd
|
|
44
|
+
Requires-Dist: zstd ; extra == 'zstd'
|
|
45
|
+
Requires-Dist: clickhouse-cityhash >=1.0.2.1 ; extra == 'zstd'
|
|
46
|
+
|
|
47
|
+
ClickHouse Python Driver
|
|
48
|
+
========================
|
|
49
|
+
|
|
50
|
+
.. image:: https://img.shields.io/pypi/v/clickhouse-driver.svg
|
|
51
|
+
:target: https://pypi.org/project/clickhouse-driver
|
|
52
|
+
|
|
53
|
+
.. image:: https://coveralls.io/repos/github/mymarilyn/clickhouse-driver/badge.svg?branch=master
|
|
54
|
+
:target: https://coveralls.io/github/mymarilyn/clickhouse-driver?branch=master
|
|
55
|
+
|
|
56
|
+
.. image:: https://img.shields.io/pypi/l/clickhouse-driver.svg
|
|
57
|
+
:target: https://pypi.org/project/clickhouse-driver
|
|
58
|
+
|
|
59
|
+
.. image:: https://img.shields.io/pypi/pyversions/clickhouse-driver.svg
|
|
60
|
+
:target: https://pypi.org/project/clickhouse-driver
|
|
61
|
+
|
|
62
|
+
.. image:: https://img.shields.io/pypi/dm/clickhouse-driver.svg
|
|
63
|
+
:target: https://pypi.org/project/clickhouse-driver
|
|
64
|
+
|
|
65
|
+
.. image:: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml/badge.svg
|
|
66
|
+
:target: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml
|
|
67
|
+
|
|
68
|
+
ClickHouse Python Driver with native (TCP) interface support.
|
|
69
|
+
|
|
70
|
+
Asynchronous wrapper is available here: https://github.com/mymarilyn/aioch
|
|
71
|
+
|
|
72
|
+
Features
|
|
73
|
+
========
|
|
74
|
+
|
|
75
|
+
- External data for query processing.
|
|
76
|
+
|
|
77
|
+
- Query settings.
|
|
78
|
+
|
|
79
|
+
- Compression support.
|
|
80
|
+
|
|
81
|
+
- TLS support.
|
|
82
|
+
|
|
83
|
+
- Types support:
|
|
84
|
+
|
|
85
|
+
* Float32/64
|
|
86
|
+
* [U]Int8/16/32/64/128/256
|
|
87
|
+
* Date/Date32/DateTime('timezone')/DateTime64('timezone')
|
|
88
|
+
* String/FixedString(N)
|
|
89
|
+
* Enum8/16
|
|
90
|
+
* Array(T)
|
|
91
|
+
* Nullable(T)
|
|
92
|
+
* Bool
|
|
93
|
+
* UUID
|
|
94
|
+
* Decimal
|
|
95
|
+
* IPv4/IPv6
|
|
96
|
+
* LowCardinality(T)
|
|
97
|
+
* SimpleAggregateFunction(F, T)
|
|
98
|
+
* Tuple(T1, T2, ...)
|
|
99
|
+
* Nested
|
|
100
|
+
* Map(key, value)
|
|
101
|
+
|
|
102
|
+
- Query progress information.
|
|
103
|
+
|
|
104
|
+
- Block by block results streaming.
|
|
105
|
+
|
|
106
|
+
- Reading query profile info.
|
|
107
|
+
|
|
108
|
+
- Receiving server logs.
|
|
109
|
+
|
|
110
|
+
- Multiple hosts support.
|
|
111
|
+
|
|
112
|
+
- Python DB API 2.0 specification support.
|
|
113
|
+
|
|
114
|
+
- Optional NumPy arrays support.
|
|
115
|
+
|
|
116
|
+
Documentation
|
|
117
|
+
=============
|
|
118
|
+
|
|
119
|
+
Documentation is available at https://clickhouse-driver.readthedocs.io.
|
|
120
|
+
|
|
121
|
+
Usage
|
|
122
|
+
=====
|
|
123
|
+
|
|
124
|
+
There are two ways to communicate with server:
|
|
125
|
+
|
|
126
|
+
- using pure Client;
|
|
127
|
+
- using DB API.
|
|
128
|
+
|
|
129
|
+
Pure Client example:
|
|
130
|
+
|
|
131
|
+
.. code-block:: python
|
|
132
|
+
|
|
133
|
+
>>> from clickhouse_driver import Client
|
|
134
|
+
>>>
|
|
135
|
+
>>> client = Client('localhost')
|
|
136
|
+
>>>
|
|
137
|
+
>>> client.execute('SHOW TABLES')
|
|
138
|
+
[('test',)]
|
|
139
|
+
>>> client.execute('DROP TABLE IF EXISTS test')
|
|
140
|
+
[]
|
|
141
|
+
>>> client.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
|
|
142
|
+
[]
|
|
143
|
+
>>> client.execute(
|
|
144
|
+
... 'INSERT INTO test (x) VALUES',
|
|
145
|
+
... [{'x': 100}]
|
|
146
|
+
... )
|
|
147
|
+
1
|
|
148
|
+
>>> client.execute('INSERT INTO test (x) VALUES', [[200]])
|
|
149
|
+
1
|
|
150
|
+
>>> client.execute(
|
|
151
|
+
... 'INSERT INTO test (x) '
|
|
152
|
+
... 'SELECT * FROM system.numbers LIMIT %(limit)s',
|
|
153
|
+
... {'limit': 3}
|
|
154
|
+
... )
|
|
155
|
+
[]
|
|
156
|
+
>>> client.execute('SELECT sum(x) FROM test')
|
|
157
|
+
[(303,)]
|
|
158
|
+
|
|
159
|
+
DB API example:
|
|
160
|
+
|
|
161
|
+
.. code-block:: python
|
|
162
|
+
|
|
163
|
+
>>> from clickhouse_driver import connect
|
|
164
|
+
>>>
|
|
165
|
+
>>> conn = connect('clickhouse://localhost')
|
|
166
|
+
>>> cursor = conn.cursor()
|
|
167
|
+
>>>
|
|
168
|
+
>>> cursor.execute('SHOW TABLES')
|
|
169
|
+
>>> cursor.fetchall()
|
|
170
|
+
[('test',)]
|
|
171
|
+
>>> cursor.execute('DROP TABLE IF EXISTS test')
|
|
172
|
+
>>> cursor.fetchall()
|
|
173
|
+
[]
|
|
174
|
+
>>> cursor.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
|
|
175
|
+
>>> cursor.fetchall()
|
|
176
|
+
[]
|
|
177
|
+
>>> cursor.executemany(
|
|
178
|
+
... 'INSERT INTO test (x) VALUES',
|
|
179
|
+
... [{'x': 100}]
|
|
180
|
+
... )
|
|
181
|
+
>>> cursor.rowcount
|
|
182
|
+
1
|
|
183
|
+
>>> cursor.executemany('INSERT INTO test (x) VALUES', [[200]])
|
|
184
|
+
>>> cursor.rowcount
|
|
185
|
+
1
|
|
186
|
+
>>> cursor.execute(
|
|
187
|
+
... 'INSERT INTO test (x) '
|
|
188
|
+
... 'SELECT * FROM system.numbers LIMIT %(limit)s',
|
|
189
|
+
... {'limit': 3}
|
|
190
|
+
... )
|
|
191
|
+
>>> cursor.rowcount
|
|
192
|
+
0
|
|
193
|
+
>>> cursor.execute('SELECT sum(x) FROM test')
|
|
194
|
+
>>> cursor.fetchall()
|
|
195
|
+
[(303,)]
|
|
196
|
+
|
|
197
|
+
License
|
|
198
|
+
=======
|
|
199
|
+
|
|
200
|
+
ClickHouse Python Driver is distributed under the `MIT license
|
|
201
|
+
<http://www.opensource.org/licenses/mit-license.php>`_.
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
clickhouse_driver/__init__.py,sha256=
|
|
2
|
-
clickhouse_driver/block.py,sha256=
|
|
1
|
+
clickhouse_driver/__init__.py,sha256=Zc8GO1dmRR77BGXAzQx9tuX5pBumMtqQzQ4SH3xmBfU,158
|
|
2
|
+
clickhouse_driver/block.py,sha256=t2zZhtCzwp4aJj0CuDqXlDEgHXgwc6GRsIks2aaIZvI,6311
|
|
3
3
|
clickhouse_driver/blockstreamprofileinfo.py,sha256=nYx9QXWAS8aPiRbtAzwLRT5JIlJ8S103JMkudncwpFg,712
|
|
4
|
-
clickhouse_driver/bufferedreader.cp38-win32.pyd,sha256=
|
|
5
|
-
clickhouse_driver/bufferedwriter.cp38-win32.pyd,sha256=
|
|
6
|
-
clickhouse_driver/client.py,sha256=
|
|
7
|
-
clickhouse_driver/clientinfo.py,sha256=
|
|
8
|
-
clickhouse_driver/connection.py,sha256=
|
|
4
|
+
clickhouse_driver/bufferedreader.cp38-win32.pyd,sha256=QC6cric2p45CyHqsMBDxSukr9TYiF5GOtF2nDDS5cmg,84480
|
|
5
|
+
clickhouse_driver/bufferedwriter.cp38-win32.pyd,sha256=36lzEG5R8no7hCt3Aau3J76z5s242xj2cjkZYeyzLfE,84480
|
|
6
|
+
clickhouse_driver/client.py,sha256=Zk_gnfqOSz1_3uaTsBLtOHNGX0rsiklJUPpk-1aqnXQ,34707
|
|
7
|
+
clickhouse_driver/clientinfo.py,sha256=Tw3NbuDHglT6_f0AcT0IdhqW_hVePtzh9pypx5nk5ZE,4260
|
|
8
|
+
clickhouse_driver/connection.py,sha256=Lzx6bjPDEZleEtFaede4_BcRmALIbJyQLymSmj7zAHY,28399
|
|
9
9
|
clickhouse_driver/context.py,sha256=yPkJ_BN4LGODvKCOjNlDGqABwxAMQTQl7w1vIGRPBDg,909
|
|
10
|
-
clickhouse_driver/defines.py,sha256=
|
|
10
|
+
clickhouse_driver/defines.py,sha256=hXIR10BvH_sxUN35pk-f-VeIbM7CA0Ll2B2yNuAy10A,1958
|
|
11
11
|
clickhouse_driver/errors.py,sha256=mffBg-Y2LFOSRzvE9V34RwFcvmfh67yqLeEBhrdjeXE,14343
|
|
12
|
-
clickhouse_driver/log.py,sha256=
|
|
12
|
+
clickhouse_driver/log.py,sha256=P9VS_YDY3a4JQsNOeUNNK0L1AAallTC1GF4FG5gCrac,1091
|
|
13
13
|
clickhouse_driver/opentelemetry.py,sha256=GIzHCxdB8LB1ozXtUjIpxsdznmRABAts64G2u2l4C_A,1622
|
|
14
|
-
clickhouse_driver/progress.py,sha256=
|
|
14
|
+
clickhouse_driver/progress.py,sha256=MagDPiLzWG-2Arecu5O6JlK98242ayt9yPa9H7v9o5k,1288
|
|
15
15
|
clickhouse_driver/protocol.py,sha256=ZRJuawN_v8wXFrHrcpSiBqu7idKsPd3tQnCcDuTlIw8,2561
|
|
16
16
|
clickhouse_driver/queryprocessingstage.py,sha256=lbV-bB5jWUp0hqYBTsUcRYkJhCgCTfN2G21AykMoAp0,186
|
|
17
17
|
clickhouse_driver/reader.py,sha256=PWKOKwjszu0sJbG-dd_TyGn8tQAzxg2gCJVbz27G3-8,1322
|
|
18
18
|
clickhouse_driver/readhelpers.py,sha256=tXOmSL9GSeHLdKE2yBlk0epfy-hGJ3bTOLq3Q6sXIkw,717
|
|
19
19
|
clickhouse_driver/result.py,sha256=RpjBUvRQJ70xISye7u6gxgQBJwc2UkNuusLkaZF7SmM,4098
|
|
20
|
-
clickhouse_driver/varint.cp38-win32.pyd,sha256=
|
|
20
|
+
clickhouse_driver/varint.cp38-win32.pyd,sha256=NN3lAjT3wTj7Cf52n1yd2GN0dS3DDl56MQRFUdCXIMQ,32768
|
|
21
21
|
clickhouse_driver/writer.py,sha256=yf5f1vTr56YFtL-Swpi_jBsPw5bQS56j53joB0Acdyk,1286
|
|
22
22
|
clickhouse_driver/columns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
clickhouse_driver/columns/arraycolumn.py,sha256=
|
|
24
|
-
clickhouse_driver/columns/base.py,sha256=
|
|
23
|
+
clickhouse_driver/columns/arraycolumn.py,sha256=UiA48jw3o4-ert8BnzEbl2h1jVmtDH3jtcP1BTPru2w,5322
|
|
24
|
+
clickhouse_driver/columns/base.py,sha256=jRThD8Ol7gwNy3x0M7vvslkm0RDOsCLJqKGf0arsa0w,6504
|
|
25
25
|
clickhouse_driver/columns/boolcolumn.py,sha256=QgVCqbZWoFD1yvpppc92iiXIzReCVEh692efNSNH4UE,127
|
|
26
|
-
clickhouse_driver/columns/datecolumn.py,sha256=
|
|
26
|
+
clickhouse_driver/columns/datecolumn.py,sha256=FzgS5ayxW6zfyM5qD1NXXiR4PTKz0tXEC48TwtQvbyI,1929
|
|
27
27
|
clickhouse_driver/columns/datetimecolumn.py,sha256=pO8g1exACp6EfUO0prra5X3T_gg1MJ8bSoi5Rt2Vxjg,6691
|
|
28
28
|
clickhouse_driver/columns/decimalcolumn.py,sha256=MBczjN6AtI0jgbVTNguwVE7ZdWql0XuMl-QohxV-sN0,3450
|
|
29
29
|
clickhouse_driver/columns/enumcolumn.py,sha256=GCSW-fjtJC4_5YKo9oKtG8GT9UhLcRWCjrBVhEAUp-A,3219
|
|
@@ -32,27 +32,28 @@ clickhouse_driver/columns/floatcolumn.py,sha256=Mci7Fl05dgkpDQRfjGaDP9QraZER5nkY
|
|
|
32
32
|
clickhouse_driver/columns/intcolumn.py,sha256=ntpxyMiu44VQYJ0HyHlglwxMgUtnIgf3JE9LUD9Xwwc,3519
|
|
33
33
|
clickhouse_driver/columns/intervalcolumn.py,sha256=oQeybb4qrcp07LeVYfqgeZuHYGH5RaY7KnWVoIsDe1I,600
|
|
34
34
|
clickhouse_driver/columns/ipcolumn.py,sha256=LIt-NiUy70-8u5Amu0v0tlAlrolZ8gXzlFxcJYmjRAk,4095
|
|
35
|
-
clickhouse_driver/columns/
|
|
36
|
-
clickhouse_driver/columns/
|
|
37
|
-
clickhouse_driver/columns/
|
|
38
|
-
clickhouse_driver/columns/
|
|
35
|
+
clickhouse_driver/columns/jsoncolumn.py,sha256=SeCLSrmRoEg9wlvoehs7-EmrV8XkOL3lknzeOORhbJg,1175
|
|
36
|
+
clickhouse_driver/columns/largeint.cp38-win32.pyd,sha256=Vsh7WAg0N6je3PrBWFarsl3lg_6hJGqRg_Sn_aLkmNQ,52736
|
|
37
|
+
clickhouse_driver/columns/lowcardinalitycolumn.py,sha256=vMlhYYUPNmFhQiUAS77pE25KjI8TrO6ySz6w0ByBdZQ,4920
|
|
38
|
+
clickhouse_driver/columns/mapcolumn.py,sha256=tKr9R0JvW1_7ExKs7XfRhHI6Z6UgBW76A0jaCMM_TLk,2084
|
|
39
|
+
clickhouse_driver/columns/nestedcolumn.py,sha256=7x3xNYR22kEmgV4_3rPVZea2zCTU364O1tlOewMgw3M,303
|
|
39
40
|
clickhouse_driver/columns/nothingcolumn.py,sha256=O1a1K17tPw5DYH49gBQq9urrmm0plDJ34YD2s2y6dhg,259
|
|
40
41
|
clickhouse_driver/columns/nullablecolumn.py,sha256=HF4AyX2UIb6qGqe4aY_Tdcjf1ddisPO2QYte3PCIaRU,169
|
|
41
42
|
clickhouse_driver/columns/nullcolumn.py,sha256=a8Il310y69JQr-NobcK9WhMAkXlogMvDmJbcueuOozs,331
|
|
42
|
-
clickhouse_driver/columns/service.py,sha256=
|
|
43
|
+
clickhouse_driver/columns/service.py,sha256=6nIGwvcG-5LErQFn_3a2GRKZI2OnKYsy2oIIMhxJqlc,6181
|
|
43
44
|
clickhouse_driver/columns/simpleaggregatefunctioncolumn.py,sha256=zDWBd_Hc7AktHFZ5JY7SwxIk7G4WBHdJdcPBqihe7q0,235
|
|
44
45
|
clickhouse_driver/columns/stringcolumn.py,sha256=C-l7HaReg9AcJGQvgpSH07aV-CZMBP1jKArPHZi8Q2k,2059
|
|
45
|
-
clickhouse_driver/columns/tuplecolumn.py,sha256=
|
|
46
|
+
clickhouse_driver/columns/tuplecolumn.py,sha256=DnwtEwVXzm-YyL5-cPe9MiOLOoTEcDhcYeBY6SuuZZQ,2040
|
|
46
47
|
clickhouse_driver/columns/util.py,sha256=5DRGBsWSTldqZRZJ53J85zh_jepkwkAsYXhAeDJQW4I,1395
|
|
47
|
-
clickhouse_driver/columns/uuidcolumn.py,sha256=
|
|
48
|
+
clickhouse_driver/columns/uuidcolumn.py,sha256=7CLPxsHJtV6Zt9jxILSkE0LAwffloLmrjjbwCZH34mA,1865
|
|
48
49
|
clickhouse_driver/columns/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
50
|
clickhouse_driver/columns/numpy/base.py,sha256=Wk1ADpoQGWQv5X8sWi0esA2jmQGEoDakXZxImuYM2eM,1410
|
|
50
51
|
clickhouse_driver/columns/numpy/boolcolumn.py,sha256=0_RwEroY2-ZqMuxKeTNG27ZCWN_y9BxYZzbuFKeqoQg,140
|
|
51
52
|
clickhouse_driver/columns/numpy/datecolumn.py,sha256=xWFsFwiRmszK9A20UWnF4beTE5f8XQDj18x53xtXtSI,482
|
|
52
|
-
clickhouse_driver/columns/numpy/datetimecolumn.py,sha256=
|
|
53
|
+
clickhouse_driver/columns/numpy/datetimecolumn.py,sha256=XQ3JsxVdAvWJndNek4-i07JO2QJIdUnJQWzOxvF3PMc,4777
|
|
53
54
|
clickhouse_driver/columns/numpy/floatcolumn.py,sha256=WnnlyR3vabh6ixllXwdyQ_t8y5MSqCddImWityxz6pE,599
|
|
54
55
|
clickhouse_driver/columns/numpy/intcolumn.py,sha256=ZzmjvjpEaZ_kk-mGEPdBAqUCjqCgGT8tUEzbQKwUVVA,792
|
|
55
|
-
clickhouse_driver/columns/numpy/lowcardinalitycolumn.py,sha256=
|
|
56
|
+
clickhouse_driver/columns/numpy/lowcardinalitycolumn.py,sha256=ExYtwBBn6WfSQtWC0f79ZqjdqO3ZJ3IL6KtlQOgMh-k,3368
|
|
56
57
|
clickhouse_driver/columns/numpy/service.py,sha256=ENk26HPfxtbumcO_b2fGTNJdTgaJT0a-l3q_xrRIZZ4,2126
|
|
57
58
|
clickhouse_driver/columns/numpy/stringcolumn.py,sha256=FH87XPQv3ga0ZJnngubqu4DgxmUt8bjW8xJcNfOU7EI,2439
|
|
58
59
|
clickhouse_driver/columns/numpy/tuplecolumn.py,sha256=5RqhCIZ-CrWy_D0yyfTmlWBJgrunT5Yk-bM4OvIKZ1o,1233
|
|
@@ -73,16 +74,16 @@ clickhouse_driver/numpy/result.py,sha256=D-7IsaIt0u4WJ8iSzXYBB0OiPgPu5ptu-1HiJvT
|
|
|
73
74
|
clickhouse_driver/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
75
|
clickhouse_driver/settings/available.py,sha256=8b1YUjt-_6gO9Cio02VZSMPdhM70zk-NMhE4f_jwFx8,16613
|
|
75
76
|
clickhouse_driver/settings/types.py,sha256=u_A3FzREqIjj4OSEdKUwm1Xn8jEnGpp-9AvqbcE2G8s,1108
|
|
76
|
-
clickhouse_driver/settings/writer.py,sha256=
|
|
77
|
+
clickhouse_driver/settings/writer.py,sha256=x0FVdbKZR9lN-hXAT2xxkoqvGo1ojvWWwyP3NaI7ZDA,1099
|
|
77
78
|
clickhouse_driver/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
79
|
clickhouse_driver/streams/compressed.py,sha256=eyFCuq_sLX6oJLQ_h1QX3IB9IgUx56pPqPfhmeiA6ag,2865
|
|
79
|
-
clickhouse_driver/streams/native.py,sha256=
|
|
80
|
+
clickhouse_driver/streams/native.py,sha256=2qAs5deUU4NwLG3zQAyxNwGsKmJO41-qlTRKGRFSAJA,3316
|
|
80
81
|
clickhouse_driver/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
-
clickhouse_driver/util/compat.py,sha256=
|
|
82
|
-
clickhouse_driver/util/escape.py,sha256=
|
|
82
|
+
clickhouse_driver/util/compat.py,sha256=wIB_6ULSapKx-Fi64lZ0YJ-TtWOQXePHE90wZopIM1I,876
|
|
83
|
+
clickhouse_driver/util/escape.py,sha256=4RPfNzC5IvatoZB9llmJM4436XArCXQDEqT_cqdwCBk,2256
|
|
83
84
|
clickhouse_driver/util/helpers.py,sha256=1oLkkkILXZnEbdjAe2Ags-Y-T-Bq9rk94W6edh-1ZLU,1448
|
|
84
|
-
clickhouse_driver-0.2.
|
|
85
|
-
clickhouse_driver-0.2.
|
|
86
|
-
clickhouse_driver-0.2.
|
|
87
|
-
clickhouse_driver-0.2.
|
|
88
|
-
clickhouse_driver-0.2.
|
|
85
|
+
clickhouse_driver-0.2.7.dist-info/LICENSE,sha256=b2SjNa4zGQk6XzJwmeE1dQjjtWRvX_zxJIAl_ZbN_S8,1143
|
|
86
|
+
clickhouse_driver-0.2.7.dist-info/METADATA,sha256=nm1U-XpLBm_B8vyg_AS7v8GFDNOkjKLo0cCR_U06VFk,6290
|
|
87
|
+
clickhouse_driver-0.2.7.dist-info/WHEEL,sha256=y8qDGGdi2jzVmdhM7TFDumLpecKSDSzZ5cZMyFFuIFQ,96
|
|
88
|
+
clickhouse_driver-0.2.7.dist-info/top_level.txt,sha256=PrE0Lrs4d-gRQwzABaABfym9Qvr4nN6uTrDy6Q7zQME,18
|
|
89
|
+
clickhouse_driver-0.2.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|