Fix handling event stream tables (#855)

Follow up to https://github.com/mozilla/lookml-generator/pull/854
This commit is contained in:
akkomar 2024-01-18 17:05:34 +01:00 коммит произвёл GitHub
Родитель 75e4302546
Коммит 8f400e4ecc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -125,7 +125,7 @@ def _generate_dimensions(client: bigquery.Client, table: str) -> List[Dict[str,
and name != "submission"
and not name.endswith("end")
and not name.endswith("start")
and not (name != "event" and dimension["type"] != "time")
and not (name == "event" and dimension["type"] == "time")
):
raise click.ClickException(
f"duplicate dimension {name!r} for table {table!r}"