-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
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
Tips for reading TableRows #59
Comments
Hi @natthew this post is a bit older, but in case anyone else stumbles upon it. Since the TableCells are serde::Value you can merge all columns of a row in a parent Value and and use that to deserlize into a specific type. Here is the sample code: pub async fn query<T: serde::de::DeserializeOwned>(&self, sql: &str,
query_parameters: Vec<QueryParameter>) -> anyhow::Result<Vec<T>> {
let mut query_request = QueryRequest::new(sql);
query_request.parameter_mode = Some("NAMED".to_string());
query_request.use_legacy_sql = false;
query_request.query_parameters = Some(query_parameters);
let mut result_set = self.client
.job()
.query(&self.project_id, query_request)
.await?;
let columns = result_set.column_names();
let mut rows: Vec<T> = vec!();
while result_set.next_row() {
let mut row_values: serde_json::Map<String, Value> = serde_json::Map::new();
for column in columns.iter() {
let column_value = result_set.get_json_value_by_name(column)?;
if let Some(column_value) = column_value {
row_values.insert(column.clone(), column_value);
} else {
row_values.insert(column.clone(), Value::Null);
}
}
let row_as_value = Value::Object(row_values);
let row_as_type: T = serde_json::from_value(row_as_value)?;
rows.push(row_as_type);
}
Ok(rows)
} Then use it like so use serde::{Deserialize};
use serde_aux::prelude::*;
#[derive(Deserialize)]
pub struct SomeBQRow {
pub a_key: String,
#[serde(deserialize_with = "deserialize_number_from_string")]
pub an_int: i64
}
let sql = format!(
"SELECT * FROM `{}.{}.{}` WHERE ONE_COLUMN = @my_filter LIMIT 10",
&bigquery_client.project_id, &bigquery_client.dataset_id,
&bigquery_client.table_id
);
let mut query_params = vec!();
query_params.push(BigqueryClient::create_string_query_param("my_filter", "some value"));
let results: Vec<SomeBQRow> = bigquery_client.query(sql.as_str(), query_params).await?; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, thanks for writing and releasing this repository!
I'm using the
query_all
API to get a bunch of rows, and I'm trying to transform the results fromTableRow
to some struct.As #31 mentioned, it seems like all the results are all returned as strings. It's also pretty cumbersome to do this transformation. Consider the
parse
function in the example below:It's pretty awkward! There are two issues at play:
number
result as a string and then parse an i64 out of it.TableRow
.I'm sure there exists a good way to, given a TableRow and a TableSchema, construct a struct, but I'm not sure how to do it. And maybe the first issue is not a bug, and just an issue with how I'm reading the data, but I can't find a way to get it to work.
Would it be possible to create an example of how to use this API to generate a clean data structure out of a TableRow?
The text was updated successfully, but these errors were encountered: