allow_text_type => $self->{'allow_text_type'},
}
);
# create BigQuery schema json structure
my $schema_type_check_sql = "SELECT
CONCAT('{\"name\": \"', COLUMN_NAME, '\
TA_TYPE LIKE \"%int%\", \"INTEGER\",IF(DATA_TYPE = \"decimal\",\"FLOAT\",\"STRING\")) , '\"}') AS json
FROM INFORMATION_SCHEMA.columns where TABLE_SCHEMA = '${src_schema}' AND TABLE_NAME = '${
bq_schema_json = '[' . join(',', @schemas) . ']';
my($bq_schema_json_fh, $bq_schema_json_filename) = tempfile(UNLINK => 1);
unless ($self->{'dryrun'}) {
print {$bq_schema_json_fh} $bq_