Assigned
Status Update
Comments
ab...@google.com <ab...@google.com> #2
Correct JCEF is not bundled by default with Android Studio see
There's some workarounds mentioned there you could try e.g. downloading a similar version from JetBrains but with JCEF support and running Android Studio with that JRE.
If that doesn't work I suggest reaching out to the plugin developers of Bito.
Description
This will create a public issue which anybody can view and comment on.
Please provide as much information as possible. At least, this should include a description of your issue and steps to reproduce the problem. If possible please provide a summary of what steps or workarounds you have already tried, and any docs or articles you found (un)helpful.
Problem you have encountered:
The client is importing a table with millions of rows, one column has all INT except for 20 STRINGS. Import with schema auto-detection always fails. From the documentation [1], when auto-detection is enabled, BigQuery starts the inference process by selecting a random file in the data source and scanning up to 100 rows of data to use as a representative sample. BigQuery then examines each field and attempts to assign a data type to that field based on the values in the sample.
The client is suggesting when schema auto-detect is enabled and if there is an issue with inferring type, it should fallback to a STRING data type. This can possibly be implemented by having a flag that, on encountering a data type mis-match, new data type will be STRING
[1]https://cloud.google.com/bigquery/docs/schema-detect#auto-detect
What you expected to happen:
Steps to reproduce:
Other information (workarounds you have tried, documentation consulted, etc):