Merge pull request #74 from Azure/adding-support-for-unsupported-scalar-data-types

adding support for types that were supported in Kusto in the past: ui…
This commit is contained in:
netanel zakay 2020-05-25 12:09:48 +03:00 коммит произвёл GitHub
Родитель 46597572d2 842ad959d1
Коммит 5840f736b5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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 not supported in Kusto anymore
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',