You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseValueError(f"Did not understand schema: {provided_schema_name}")
387
390
# TODO: Get a test for an else statement here
391
+
if (dataset_id_from_schemaanddataset_id_from_tableand
392
+
dataset_id_from_schema!=dataset_id_from_table):
393
+
raiseValueError(f"dataset_id specified in schema and table_name disagree: got {dataset_id_from_schema} in schema, and {dataset_id_from_table} in table_name")
394
+
if (project_id_from_schemaandproject_id_from_tableand
395
+
project_id_from_schema!=project_id_from_table):
396
+
raiseValueError(f"project_id specified in schema and table_name disagree: got {project_id_from_schema} in schema, and {project_id_from_table} in table_name")
0 commit comments