зеркало из https://github.com/Azure/pykusto.git
adding support for types that were supported in Kusto in the past: uint8, uint32, uint64
This commit is contained in:
Родитель
46597572d2
Коммит
d18c94a46d
|
@ -21,6 +21,10 @@ class KustoType(Enum):
|
|||
STRING = ('string', 'StringBuffer', 'System.String', str)
|
||||
TIMESPAN = ('timespan', 'TimeSpan', 'System.TimeSpan', timedelta)
|
||||
NULL = ('null', 'null', 'null', type(None))
|
||||
# the following types are unsupported currently, but were supported in the past
|
||||
UINT8 = ('uint8', 'UI8', 'System.Byte', int)
|
||||
UINT32 = ('uint32', 'UI32', 'System.UInt32', int)
|
||||
UINT64 = ('UI64', 'UI64', 'System.UInt64', int)
|
||||
|
||||
primary_name: str
|
||||
internal_name: str
|
||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||
|
||||
setup(
|
||||
name='pykusto',
|
||||
version='0.0.17',
|
||||
version='0.0.18',
|
||||
packages=find_packages(exclude=['test']),
|
||||
url='https://github.com/Azure/pykusto',
|
||||
license='MIT License',
|
||||
|
|
Загрузка…
Ссылка в новой задаче