Polber commented on code in PR #31987: URL: https://github.com/apache/beam/pull/31987#discussion_r1736806001
########## sdks/python/apache_beam/yaml/integration_tests.py: ########## @@ -37,14 +37,33 @@ from apache_beam.utils import python_callable from apache_beam.yaml import yaml_provider from apache_beam.yaml import yaml_transform - +from apache_beam.io.gcp.spanner_wrapper import SpannerWrapper @contextlib.contextmanager def gcs_temp_dir(bucket): gcs_tempdir = bucket + '/yaml-' + str(uuid.uuid4()) yield gcs_tempdir filesystems.FileSystems.delete([gcs_tempdir]) +import contextlib +import uuid +import logging +from google.cloud import spanner + [email protected] +def temp_spanner_table(project, prefix = 'temp_spanner_db_'): + spanner_client = SpannerWrapper(project) + spanner_client._create_database() + instance = 'beam-test' Review Comment: This is a mistake on my part - leaving as 'beam-test' should be fine. Thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
