adding support for types that were supported in Kusto in the past: uint8, uint32, uint64

This commit is contained in:
Netanel Zakay 2020-05-24 17:02:37 +03:00
Родитель 46597572d2
Коммит d18c94a46d
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -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,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',