I'm following this guide from google cloud documentation to create external partitioned table, which is:
Create table from: Google Cloud Storage
Select file from GCS bucket: gs://my_bucket/data/ymd=20200703/*
File format: Avro
Source Data Partitioning, URI Prefix: gs://my_bucket/data/
Table Type: External
But when I click create table it says:
Specifying a schema is disallowed for STORAGE_FORMAT_AVRO
If I use native tables instead of external, it just works. I also tried gs://my_bucket/data/, gs://my_bucket/data/, gs://my_bucket/data/**/, gs://my_bucket/data/ymd=20200703/*, gs://my_bucket/data/ymd=20200703/file-blabla, ... for Select file from GCS bucket but no difference.
Any ideas how I can create external partitioned tables in BigQuery? not native?