While loading ORC Files to an existing BQ Table using "bq Load" command, im observing that once the data is loaded, the table schema(the column names of the table) also changes.
The Requirement is to Load ORC Files from GCS to a Staging table in BigQuery. This step im trying to achive using "bq load" command, but it alters the existing schema of the table.
Sample Code :
bq load --replace --source_format=ORC some_dateset.some_table_staging gs://some_bucket/some_table/*
I expect to retain the actual column names in the BigQuery Table even after i load the ORC Files into the table. But as of now the column names of the Table gets changed based on the ORC File schema