Skip to content

Commit 2adaf4d

Browse files
authored
add f64 type and repeated field mode support in AppendRows API (#112)
* add f64 support in append_rows * fix ColumnType to Type mapping * add support for repeated fields
1 parent a305e22 commit 2adaf4d

File tree

1 file changed

+60
-21
lines changed

1 file changed

+60
-21
lines changed

src/storage.rs

+60-21
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
use std::{collections::HashMap, convert::TryInto, fmt::Display, sync::Arc};
33

44
use prost::Message;
5-
use prost_types::{field_descriptor_proto::Type, DescriptorProto, FieldDescriptorProto};
5+
use prost_types::{
6+
field_descriptor_proto::{Label, Type},
7+
DescriptorProto, FieldDescriptorProto,
8+
};
69
use tonic::{
710
transport::{Channel, ClientTlsConfig},
811
Request, Streaming,
@@ -24,34 +27,62 @@ static BIG_QUERY_STORAGE_API_URL: &str = "https://bigquerystorage.googleapis.com
2427
// Service Name
2528
static BIGQUERY_STORAGE_API_DOMAIN: &str = "bigquerystorage.googleapis.com";
2629

27-
/// BigQuery column type
30+
/// Protobuf column type
2831
#[derive(Clone, Copy)]
2932
pub enum ColumnType {
30-
Bool,
31-
Bytes,
32-
Date,
33-
Datetime,
34-
Json,
33+
Double,
34+
Float,
3535
Int64,
36-
Float64,
36+
Uint64,
37+
Int32,
38+
Fixed64,
39+
Fixed32,
40+
Bool,
3741
String,
38-
Time,
39-
Timestamp,
42+
Bytes,
43+
Uint32,
44+
Sfixed32,
45+
Sfixed64,
46+
Sint32,
47+
Sint64,
4048
}
4149

4250
impl From<ColumnType> for Type {
4351
fn from(value: ColumnType) -> Self {
4452
match value {
45-
ColumnType::Bool => Type::Bool,
46-
ColumnType::Bytes => Type::Bytes,
47-
ColumnType::Date => Type::String,
48-
ColumnType::Datetime => Type::String,
49-
ColumnType::Json => Type::String,
53+
ColumnType::Double => Type::Double,
54+
ColumnType::Float => Type::Float,
5055
ColumnType::Int64 => Type::Int64,
51-
ColumnType::Float64 => Type::Float,
56+
ColumnType::Uint64 => Type::Uint64,
57+
ColumnType::Int32 => Type::Int32,
58+
ColumnType::Fixed64 => Type::Fixed64,
59+
ColumnType::Fixed32 => Type::Fixed32,
60+
ColumnType::Bool => Type::Bool,
5261
ColumnType::String => Type::String,
53-
ColumnType::Time => Type::String,
54-
ColumnType::Timestamp => Type::String,
62+
ColumnType::Bytes => Type::Bytes,
63+
ColumnType::Uint32 => Type::Uint32,
64+
ColumnType::Sfixed32 => Type::Sfixed32,
65+
ColumnType::Sfixed64 => Type::Sfixed64,
66+
ColumnType::Sint32 => Type::Sint32,
67+
ColumnType::Sint64 => Type::Sfixed64,
68+
}
69+
}
70+
}
71+
72+
/// Column mode
73+
#[derive(Clone, Copy)]
74+
pub enum ColumnMode {
75+
Nullable,
76+
Required,
77+
Repeated,
78+
}
79+
80+
impl From<ColumnMode> for Label {
81+
fn from(value: ColumnMode) -> Self {
82+
match value {
83+
ColumnMode::Nullable => Label::Optional,
84+
ColumnMode::Required => Label::Required,
85+
ColumnMode::Repeated => Label::Repeated,
5586
}
5687
}
5788
}
@@ -66,6 +97,9 @@ pub struct FieldDescriptor {
6697

6798
/// Field type
6899
pub typ: ColumnType,
100+
101+
/// Field mode
102+
pub mode: ColumnMode,
69103
}
70104

71105
/// A struct to describe the schema of a table in protobuf
@@ -197,10 +231,11 @@ impl StorageApi {
197231
.iter()
198232
.map(|fd| {
199233
let typ: Type = fd.typ.into();
234+
let label: Label = fd.mode.into();
200235
FieldDescriptorProto {
201236
name: Some(fd.name.clone()),
202237
number: Some(fd.number as i32),
203-
label: None,
238+
label: Some(label.into()),
204239
r#type: Some(typ.into()),
205240
type_name: None,
206241
extendee: None,
@@ -275,7 +310,7 @@ pub mod test {
275310
use crate::model::table::Table;
276311
use crate::model::table_field_schema::TableFieldSchema;
277312
use crate::model::table_schema::TableSchema;
278-
use crate::storage::{ColumnType, FieldDescriptor, StreamName, TableDescriptor};
313+
use crate::storage::{ColumnMode, ColumnType, FieldDescriptor, StreamName, TableDescriptor};
279314
use crate::{env_vars, Client};
280315
use prost::Message;
281316
use std::time::{Duration, SystemTime};
@@ -328,21 +363,25 @@ pub mod test {
328363
name: "actor_id".to_string(),
329364
number: 1,
330365
typ: ColumnType::Int64,
366+
mode: ColumnMode::Nullable,
331367
},
332368
FieldDescriptor {
333369
name: "first_name".to_string(),
334370
number: 2,
335371
typ: ColumnType::String,
372+
mode: ColumnMode::Nullable,
336373
},
337374
FieldDescriptor {
338375
name: "last_name".to_string(),
339376
number: 3,
340377
typ: ColumnType::String,
378+
mode: ColumnMode::Nullable,
341379
},
342380
FieldDescriptor {
343381
name: "last_update".to_string(),
344382
number: 4,
345-
typ: ColumnType::Timestamp,
383+
typ: ColumnType::String,
384+
mode: ColumnMode::Nullable,
346385
},
347386
];
348387
let table_descriptor = TableDescriptor { field_descriptors };

0 commit comments

Comments
 (0)