@@ -39,25 +39,25 @@ pub struct CreateTable {
39
39
/// Location tables base location
40
40
#[ serde( skip_serializing_if = "Option::is_none" ) ]
41
41
#[ builder( setter( into, strip_option) , default ) ]
42
- location : Option < String > ,
42
+ pub location : Option < String > ,
43
43
/// Table schemma
44
- schema : Schema ,
44
+ pub schema : Schema ,
45
45
/// Partition spec
46
46
#[ serde( skip_serializing_if = "Option::is_none" ) ]
47
47
#[ builder( setter( strip_option) , default ) ]
48
- partition_spec : Option < PartitionSpec > ,
48
+ pub partition_spec : Option < PartitionSpec > ,
49
49
/// Sort order
50
50
#[ serde( skip_serializing_if = "Option::is_none" ) ]
51
51
#[ builder( setter( strip_option, name = "with_sort_order" ) , default ) ]
52
- write_order : Option < SortOrder > ,
52
+ pub write_order : Option < SortOrder > ,
53
53
/// stage create
54
54
#[ serde( skip_serializing_if = "Option::is_none" ) ]
55
55
#[ builder( setter( strip_option) , default ) ]
56
- stage_create : Option < bool > ,
56
+ pub stage_create : Option < bool > ,
57
57
/// Table properties
58
58
#[ serde( skip_serializing_if = "Option::is_none" ) ]
59
59
#[ builder( setter( strip_option, each( name = "with_property" ) ) , default ) ]
60
- properties : Option < HashMap < String , String > > ,
60
+ pub properties : Option < HashMap < String , String > > ,
61
61
}
62
62
63
63
impl CreateTableBuilder {
0 commit comments