Assert no wildcards in SingleTable

This commit is contained in:
Yonatan Most 2019-07-23 07:59:22 +03:00
Родитель 0da257cfbc
Коммит 319ed8d443
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -24,6 +24,8 @@ class SingleTable(BaseTable):
def __init__(self, client: KustoClient, database: str, table: str) -> None:
super().__init__(client, database)
if '*' in table:
raise ValueError("SingleTable does not support wildcards. Instead use UnionTable")
self.table = table
def execute(self, query: Query) -> KustoResponseDataSet: