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.

Files changed (33) hide show
  1. clickhouse_driver/__init__.py +1 -1
  2. clickhouse_driver/block.py +3 -2
  3. clickhouse_driver/bufferedreader.cp38-win32.pyd +0 -0
  4. clickhouse_driver/bufferedwriter.cp38-win32.pyd +0 -0
  5. clickhouse_driver/client.py +120 -16
  6. clickhouse_driver/clientinfo.py +2 -2
  7. clickhouse_driver/columns/arraycolumn.py +15 -6
  8. clickhouse_driver/columns/base.py +71 -7
  9. clickhouse_driver/columns/datecolumn.py +2 -2
  10. clickhouse_driver/columns/jsoncolumn.py +37 -0
  11. clickhouse_driver/columns/largeint.cp38-win32.pyd +0 -0
  12. clickhouse_driver/columns/lowcardinalitycolumn.py +23 -4
  13. clickhouse_driver/columns/mapcolumn.py +6 -2
  14. clickhouse_driver/columns/nestedcolumn.py +2 -13
  15. clickhouse_driver/columns/numpy/datetimecolumn.py +16 -16
  16. clickhouse_driver/columns/numpy/lowcardinalitycolumn.py +2 -2
  17. clickhouse_driver/columns/service.py +12 -2
  18. clickhouse_driver/columns/tuplecolumn.py +31 -5
  19. clickhouse_driver/columns/uuidcolumn.py +1 -1
  20. clickhouse_driver/connection.py +104 -15
  21. clickhouse_driver/defines.py +9 -1
  22. clickhouse_driver/log.py +7 -3
  23. clickhouse_driver/progress.py +8 -2
  24. clickhouse_driver/settings/writer.py +7 -2
  25. clickhouse_driver/streams/native.py +18 -6
  26. clickhouse_driver/util/compat.py +12 -0
  27. clickhouse_driver/util/escape.py +35 -7
  28. clickhouse_driver/varint.cp38-win32.pyd +0 -0
  29. {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/METADATA +201 -202
  30. {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/RECORD +33 -32
  31. {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/WHEEL +1 -1
  32. {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/LICENSE +0 -0
  33. {clickhouse_driver-0.2.5.dist-info → clickhouse_driver-0.2.7.dist-info}/top_level.txt +0 -0
@@ -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 escape_param(item, context):
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(str(escape_param(x, context)) for x in item)
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(str(escape_param(x, context)) for x in item)
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.5
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.6
21
- Classifier: Programming Language :: Python :: 3.7
22
- Classifier: Programming Language :: Python :: 3.8
23
- Classifier: Programming Language :: Python :: 3.9
24
- Classifier: Programming Language :: Python :: 3.10
25
- Classifier: Programming Language :: Python :: 3.11
26
- Classifier: Programming Language :: Python :: Implementation :: PyPy
27
- Classifier: Topic :: Database
28
- Classifier: Topic :: Software Development
29
- Classifier: Topic :: Software Development :: Libraries
30
- Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
31
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
32
- Classifier: Topic :: Scientific/Engineering :: Information Analysis
33
- Requires-Python: >=3.6, <4
34
- License-File: LICENSE
35
- Requires-Dist: pytz
36
- Requires-Dist: tzlocal
37
- Provides-Extra: lz4
38
- Requires-Dist: clickhouse-cityhash (>=1.0.2.1) ; extra == 'lz4'
39
- Requires-Dist: lz4 ; (implementation_name != "pypy") and extra == 'lz4'
40
- Requires-Dist: lz4 (<=3.0.1) ; (implementation_name == "pypy") and extra == 'lz4'
41
- Provides-Extra: numpy
42
- Requires-Dist: numpy (>=1.12.0) ; extra == 'numpy'
43
- Requires-Dist: pandas (>=0.24.0) ; extra == 'numpy'
44
- Provides-Extra: zstd
45
- Requires-Dist: zstd ; extra == 'zstd'
46
- Requires-Dist: clickhouse-cityhash (>=1.0.2.1) ; extra == 'zstd'
47
-
48
- ClickHouse Python Driver
49
- ========================
50
-
51
- .. image:: https://img.shields.io/pypi/v/clickhouse-driver.svg
52
- :target: https://pypi.org/project/clickhouse-driver
53
-
54
- .. image:: https://coveralls.io/repos/github/mymarilyn/clickhouse-driver/badge.svg?branch=master
55
- :target: https://coveralls.io/github/mymarilyn/clickhouse-driver?branch=master
56
-
57
- .. image:: https://img.shields.io/pypi/l/clickhouse-driver.svg
58
- :target: https://pypi.org/project/clickhouse-driver
59
-
60
- .. image:: https://img.shields.io/pypi/pyversions/clickhouse-driver.svg
61
- :target: https://pypi.org/project/clickhouse-driver
62
-
63
- .. image:: https://img.shields.io/pypi/dm/clickhouse-driver.svg
64
- :target: https://pypi.org/project/clickhouse-driver
65
-
66
- .. image:: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml/badge.svg
67
- :target: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml
68
-
69
- ClickHouse Python Driver with native (TCP) interface support.
70
-
71
- Asynchronous wrapper is available here: https://github.com/mymarilyn/aioch
72
-
73
- Features
74
- ========
75
-
76
- - External data for query processing.
77
-
78
- - Query settings.
79
-
80
- - Compression support.
81
-
82
- - TLS support.
83
-
84
- - Types support:
85
-
86
- * Float32/64
87
- * [U]Int8/16/32/64/128/256
88
- * Date/Date32/DateTime('timezone')/DateTime64('timezone')
89
- * String/FixedString(N)
90
- * Enum8/16
91
- * Array(T)
92
- * Nullable(T)
93
- * Bool
94
- * UUID
95
- * Decimal
96
- * IPv4/IPv6
97
- * LowCardinality(T)
98
- * SimpleAggregateFunction(F, T)
99
- * Tuple(T1, T2, ...)
100
- * Nested
101
- * Map(key, value)
102
-
103
- - Query progress information.
104
-
105
- - Block by block results streaming.
106
-
107
- - Reading query profile info.
108
-
109
- - Receiving server logs.
110
-
111
- - Multiple hosts support.
112
-
113
- - Python DB API 2.0 specification support.
114
-
115
- - Optional NumPy arrays support.
116
-
117
- Documentation
118
- =============
119
-
120
- Documentation is available at https://clickhouse-driver.readthedocs.io.
121
-
122
- Usage
123
- =====
124
-
125
- There are two ways to communicate with server:
126
-
127
- - using pure Client;
128
- - using DB API.
129
-
130
- Pure Client example:
131
-
132
- .. code-block:: python
133
-
134
- >>> from clickhouse_driver import Client
135
- >>>
136
- >>> client = Client('localhost')
137
- >>>
138
- >>> client.execute('SHOW TABLES')
139
- [('test',)]
140
- >>> client.execute('DROP TABLE IF EXISTS test')
141
- []
142
- >>> client.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
143
- []
144
- >>> client.execute(
145
- ... 'INSERT INTO test (x) VALUES',
146
- ... [{'x': 100}]
147
- ... )
148
- 1
149
- >>> client.execute('INSERT INTO test (x) VALUES', [[200]])
150
- 1
151
- >>> client.execute(
152
- ... 'INSERT INTO test (x) '
153
- ... 'SELECT * FROM system.numbers LIMIT %(limit)s',
154
- ... {'limit': 3}
155
- ... )
156
- []
157
- >>> client.execute('SELECT sum(x) FROM test')
158
- [(303,)]
159
-
160
- DB API example:
161
-
162
- .. code-block:: python
163
-
164
- >>> from clickhouse_driver import connect
165
- >>>
166
- >>> conn = connect('clickhouse://localhost')
167
- >>> cursor = conn.cursor()
168
- >>>
169
- >>> cursor.execute('SHOW TABLES')
170
- >>> cursor.fetchall()
171
- [('test',)]
172
- >>> cursor.execute('DROP TABLE IF EXISTS test')
173
- >>> cursor.fetchall()
174
- []
175
- >>> cursor.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
176
- >>> cursor.fetchall()
177
- []
178
- >>> cursor.executemany(
179
- ... 'INSERT INTO test (x) VALUES',
180
- ... [{'x': 100}]
181
- ... )
182
- >>> cursor.rowcount
183
- 1
184
- >>> cursor.executemany('INSERT INTO test (x) VALUES', [[200]])
185
- >>> cursor.rowcount
186
- 1
187
- >>> cursor.execute(
188
- ... 'INSERT INTO test (x) '
189
- ... 'SELECT * FROM system.numbers LIMIT %(limit)s',
190
- ... {'limit': 3}
191
- ... )
192
- >>> cursor.rowcount
193
- 0
194
- >>> cursor.execute('SELECT sum(x) FROM test')
195
- >>> cursor.fetchall()
196
- [(303,)]
197
-
198
- License
199
- =======
200
-
201
- ClickHouse Python Driver is distributed under the `MIT license
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=f0NsGsR360ErJDTkmz1JElzbViEXc0G2b4p-jCCnltY,158
2
- clickhouse_driver/block.py,sha256=1HhSsCwWWWW01siAOM6-pKUQcqeJruJwao0P5Gg0Ugo,6215
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=RC6GcMpDSGV_oqIg9pC3zjz9plPEAfvDZvvwvXc8PzI,60928
5
- clickhouse_driver/bufferedwriter.cp38-win32.pyd,sha256=0Z9tdqPJ-ryTWIXyLHd-EsLAeWjn0v7epbVnzZ1vDj8,59392
6
- clickhouse_driver/client.py,sha256=QY_ZqBGQwpXJQ3h9tHg3vKzJdl7kAa45AyJnBeVNUJ8,30231
7
- clickhouse_driver/clientinfo.py,sha256=GOKnajfWPaRL0-gXFZ1T3eqbXYIVoelTK_PqpjcW_RY,4242
8
- clickhouse_driver/connection.py,sha256=FNVYhYRi1CDedrtr_TMCCjSYn7IkQ15mXEABfdNC_8k,24589
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=BqYBxLzSn2mLm2qUMckemAj_uVluXaxIVtfKHa5OYJ8,1469
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=VLeOYXn5DW2hJ53m2w5bPsMrWG5cWnq5whE4e6euK_M,888
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=d9IGLv0Al16-SzQNyaQ4EfHvLGolKjjwt9xIzsB2A9g,1039
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=0PHg2e-MeJgL9jfFrRKblNzmoZlC3dzX1UErjisS1ck,22016
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=DZDYHZ9buEQ6-nrI6V89fTDgRPThJPT2ZS4sHxyuz5M,5084
24
- clickhouse_driver/columns/base.py,sha256=i1yyYgevq-MQeo42cRuVRTsqBOU53jm1e25WwiJwO2o,4510
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=Xg6qHb7Lj5twtMa0jL74qoffgYMt2gK_AY9mycRxBqQ,1931
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/largeint.cp38-win32.pyd,sha256=JemHUPDv1ywbN3DV4IllFP60pPb8msLNvC93zXJ0nBY,39424
36
- clickhouse_driver/columns/lowcardinalitycolumn.py,sha256=sAm0nrPIDXKLPmPOCPu69JoRDy_ZTH7qLMAvS1LUJc8,4042
37
- clickhouse_driver/columns/mapcolumn.py,sha256=v2GqFJcQ8bPHI1Uig0sFeIMV5AzK22H1ZivAB29HNfc,1964
38
- clickhouse_driver/columns/nestedcolumn.py,sha256=LeMcEXI64S4DJmwj1HIPpvyLylIT8LVmFQPhbCbfumw,619
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=32Utrm3CHouoXXuZAZUKYCrsW4blmrI3b53zgW3JEow,5863
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=jP4ZmpTLemIxEY9t40FF30rrhCj2CGfI5yW6iCrspNQ,1149
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=d-dR_CIgtQd-CzCO90HJoeR86j7ejVchOnAKu73rVoQ,1823
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=7hhZvupfKToj4qLMX1-4zRQNbpqIZffklaS0rXmEgoo,4610
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=WMFdOd_wWcV56GZyGMyleCgmtIE6mIa80Pq4LqBe4cY,3332
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=lvCfMJ62l1adlNBDRRbhwv9vYrda2yveh34d4mCGwHg,1064
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=n6_lOgdgrniMvew7dNVE0IDWIJWKrULc-my6bciSTmo,2728
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=TyjwofbxIjav1_6jdZfq3s1JYV2gbgYC-9mX35rp7Fw,695
82
- clickhouse_driver/util/escape.py,sha256=z12JboQqjt66fMtNWFadWfZamXEZif_UtxgIPn5BPek,1453
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.5.dist-info/LICENSE,sha256=b2SjNa4zGQk6XzJwmeE1dQjjtWRvX_zxJIAl_ZbN_S8,1143
85
- clickhouse_driver-0.2.5.dist-info/METADATA,sha256=nC1uew-TKXzVjKKB_kGUyjqA6NFctlXw1mrS5exVDFw,6149
86
- clickhouse_driver-0.2.5.dist-info/WHEEL,sha256=f5A3Ypo9PM0E06rgvH7-s12WthkA89SedEqLArPnjKU,96
87
- clickhouse_driver-0.2.5.dist-info/top_level.txt,sha256=PrE0Lrs4d-gRQwzABaABfym9Qvr4nN6uTrDy6Q7zQME,18
88
- clickhouse_driver-0.2.5.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp38-cp38-win32
5
5