зеркало из https://github.com/Azure/pykusto.git
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:
Коммит
5840f736b5
|
@ -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
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',
|
||||
|
|
Загрузка…
Ссылка в новой задаче