The [BigQuery Documentation](https://cloud.google.com/bigquery/loading-data#loading_avro_files) lists AVRO as a valid source format, but the [SourceFormat function](https://github.com/GoogleCloudPlatform/google-cloud-python/blob/09061d1a1a97190bc3c4c4087bbdcd92c99e0e2e/bigquery/google/cloud/bigquery/job.py#L68-L73) in the client doesn't include it. Fixing this should be as easy as adding: ``` AVRO = 'AVRO' ALLOWED = (CSV, DATASTORE_BACKUP, NEWLINE_DELIMITED_JSON, AVRO) ```
The BigQuery Documentation lists AVRO as a valid source format, but the SourceFormat function in the client doesn't include it. Fixing this should be as easy as adding: