Downloading a file from Big query to GCS is having extra double quote around string data

I am working on data extration from big query to gcs .
When I am downloading data ,my string data ishaving extra double quotes around it like below.
“””Account””=””2024″”,””name””=””xyz”””

Data in big query view looks good .I am using conacte and collasce in my view query to create a view and from their I am extarcting data using BigQueryToGCSOperator use in airflow.

I want data in below format after extraction

“Account””=”2024″,”name””=””xyz” (only with sibgle doublw quotes.

Leave a Comment