Bugfix: missing UDFs without dependencies

This commit is contained in:
Anna Scholtz 2019-07-22 13:03:42 -07:00
Родитель 4f897edd8a
Коммит ff356466f6
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -33,7 +33,7 @@ parser.add_argument(
parser.add_argument(
"--dataset",
default="udf",
help="The names of the dataset the persistent UDFs will be stored in.",
help="The name of the dataset the persistent UDFs will be stored in.",
)
parser.add_argument(
"--udf-dir",
@ -55,6 +55,8 @@ def main():
dependencies.append(dep)
publish_persistent_udf(raw_udfs[dep], args.dataset, args.project_id)
publish_persistent_udf(raw_udfs[raw_udf], args.dataset, args.project_id)
def publish_persistent_udf(raw_udf, dataset, project_id):
client = bigquery.Client()