We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When working with a BQ table with a column named 'f', construction of a TableRow object fails with
TableRow
java.lang.IllegalArgumentException: Can not set java.util.List field com.google.api.services.bigquery.model.TableRow.f to java.lang.String
This happens because TableRow is a GenericJson and has a key field named f expecting a List<TableCell>.
GenericJson
f
List<TableCell>
When reading the javadoc for TableRow, it seems to me that this model is supposed to represent a BQ resultset in the form
{ "f": [{"v": 1}, {"v": "value"}] }
beam abuses the GenericJson capability and relies on the unknown fields to encode the result in the form
{ "column1": 1, "column2": "value" }
Priority: 2 (default / most bugs should be filed as P2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
When working with a BQ table with a column named 'f', construction of a
TableRow
object fails withThis happens because
TableRow
is aGenericJson
and has a key field namedf
expecting aList<TableCell>
.When reading the javadoc for
TableRow
, it seems to me that this model is supposed to represent a BQ resultset in the formbeam abuses the
GenericJson
capability and relies on the unknown fields to encode the result in the formIssue Priority
Priority: 2 (default / most bugs should be filed as P2)
Issue Components
The text was updated successfully, but these errors were encountered: