2
2
use std:: { collections:: HashMap , convert:: TryInto , fmt:: Display , sync:: Arc } ;
3
3
4
4
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
+ } ;
6
9
use tonic:: {
7
10
transport:: { Channel , ClientTlsConfig } ,
8
11
Request , Streaming ,
@@ -24,34 +27,62 @@ static BIG_QUERY_STORAGE_API_URL: &str = "https://bigquerystorage.googleapis.com
24
27
// Service Name
25
28
static BIGQUERY_STORAGE_API_DOMAIN : & str = "bigquerystorage.googleapis.com" ;
26
29
27
- /// BigQuery column type
30
+ /// Protobuf column type
28
31
#[ derive( Clone , Copy ) ]
29
32
pub enum ColumnType {
30
- Bool ,
31
- Bytes ,
32
- Date ,
33
- Datetime ,
34
- Json ,
33
+ Double ,
34
+ Float ,
35
35
Int64 ,
36
- Float64 ,
36
+ Uint64 ,
37
+ Int32 ,
38
+ Fixed64 ,
39
+ Fixed32 ,
40
+ Bool ,
37
41
String ,
38
- Time ,
39
- Timestamp ,
42
+ Bytes ,
43
+ Uint32 ,
44
+ Sfixed32 ,
45
+ Sfixed64 ,
46
+ Sint32 ,
47
+ Sint64 ,
40
48
}
41
49
42
50
impl From < ColumnType > for Type {
43
51
fn from ( value : ColumnType ) -> Self {
44
52
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 ,
50
55
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 ,
52
61
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 ,
55
86
}
56
87
}
57
88
}
@@ -66,6 +97,9 @@ pub struct FieldDescriptor {
66
97
67
98
/// Field type
68
99
pub typ : ColumnType ,
100
+
101
+ /// Field mode
102
+ pub mode : ColumnMode ,
69
103
}
70
104
71
105
/// A struct to describe the schema of a table in protobuf
@@ -197,10 +231,11 @@ impl StorageApi {
197
231
. iter ( )
198
232
. map ( |fd| {
199
233
let typ: Type = fd. typ . into ( ) ;
234
+ let label: Label = fd. mode . into ( ) ;
200
235
FieldDescriptorProto {
201
236
name : Some ( fd. name . clone ( ) ) ,
202
237
number : Some ( fd. number as i32 ) ,
203
- label : None ,
238
+ label : Some ( label . into ( ) ) ,
204
239
r#type : Some ( typ. into ( ) ) ,
205
240
type_name : None ,
206
241
extendee : None ,
@@ -275,7 +310,7 @@ pub mod test {
275
310
use crate :: model:: table:: Table ;
276
311
use crate :: model:: table_field_schema:: TableFieldSchema ;
277
312
use crate :: model:: table_schema:: TableSchema ;
278
- use crate :: storage:: { ColumnType , FieldDescriptor , StreamName , TableDescriptor } ;
313
+ use crate :: storage:: { ColumnMode , ColumnType , FieldDescriptor , StreamName , TableDescriptor } ;
279
314
use crate :: { env_vars, Client } ;
280
315
use prost:: Message ;
281
316
use std:: time:: { Duration , SystemTime } ;
@@ -328,21 +363,25 @@ pub mod test {
328
363
name: "actor_id" . to_string( ) ,
329
364
number: 1 ,
330
365
typ: ColumnType :: Int64 ,
366
+ mode: ColumnMode :: Nullable ,
331
367
} ,
332
368
FieldDescriptor {
333
369
name: "first_name" . to_string( ) ,
334
370
number: 2 ,
335
371
typ: ColumnType :: String ,
372
+ mode: ColumnMode :: Nullable ,
336
373
} ,
337
374
FieldDescriptor {
338
375
name: "last_name" . to_string( ) ,
339
376
number: 3 ,
340
377
typ: ColumnType :: String ,
378
+ mode: ColumnMode :: Nullable ,
341
379
} ,
342
380
FieldDescriptor {
343
381
name: "last_update" . to_string( ) ,
344
382
number: 4 ,
345
- typ: ColumnType :: Timestamp ,
383
+ typ: ColumnType :: String ,
384
+ mode: ColumnMode :: Nullable ,
346
385
} ,
347
386
] ;
348
387
let table_descriptor = TableDescriptor { field_descriptors } ;
0 commit comments