Skip to content

Commit 643a8e3

Browse files
authored
feat(bigtable): expose protoToType (#10602)
* feat(bigtable): expose protoToType * add comment to ProtoToType
1 parent 0211c95 commit 643a8e3

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

bigtable/admin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ func (ac *AdminClient) TableInfo(ctx context.Context, table string) (*TableInfo,
639639
Name: name,
640640
GCPolicy: GCRuleToString(fam.GcRule),
641641
FullGCPolicy: gcRuleToPolicy(fam.GcRule),
642-
ValueType: protoToType(fam.ValueType),
642+
ValueType: ProtoToType(fam.ValueType),
643643
})
644644
}
645645
// we expect DeletionProtection to be in the response because Table_SCHEMA_VIEW is being used in this function

bigtable/type.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ func (agg AggregateType) proto() *btapb.Type {
198198
return &btapb.Type{Kind: &btapb.Type_AggregateType{AggregateType: protoAgg}}
199199
}
200200

201-
func protoToType(pb *btapb.Type) Type {
201+
// ProtoToType converts a protobuf *btapb.Type to an instance of the Type interface, for use of the admin API.
202+
func ProtoToType(pb *btapb.Type) Type {
202203
if pb == nil {
203204
return unknown[btapb.Type]{wrapped: nil}
204205
}
@@ -254,7 +255,7 @@ func aggregateProtoToType(agg *btapb.Type_Aggregate) Type {
254255
return AggregateType{Input: nil, Aggregator: unknownAggregator{wrapped: agg}}
255256
}
256257

257-
it := protoToType(agg.InputType)
258+
it := ProtoToType(agg.InputType)
258259
var aggregator Aggregator
259260
switch agg.Aggregator.(type) {
260261
case *btapb.Type_Aggregate_Sum_:

bigtable/type_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func TestSumAggregateProto(t *testing.T) {
108108

109109
func TestProtoBijection(t *testing.T) {
110110
want := aggregateProto()
111-
got := protoToType(want).proto()
111+
got := ProtoToType(want).proto()
112112
if !proto.Equal(got, want) {
113113
t.Errorf("got type %v, want: %v", got, want)
114114
}
@@ -223,11 +223,11 @@ func TestHllAggregateProto(t *testing.T) {
223223
}
224224

225225
func TestNilChecks(t *testing.T) {
226-
// protoToType
227-
if val, ok := protoToType(nil).(unknown[btapb.Type]); !ok {
226+
// ProtoToType
227+
if val, ok := ProtoToType(nil).(unknown[btapb.Type]); !ok {
228228
t.Errorf("got: %T, wanted unknown[btapb.Type]", val)
229229
}
230-
if val, ok := protoToType(&btapb.Type{}).(unknown[btapb.Type]); !ok {
230+
if val, ok := ProtoToType(&btapb.Type{}).(unknown[btapb.Type]); !ok {
231231
t.Errorf("got: %T, wanted unknown[btapb.Type]", val)
232232
}
233233

0 commit comments

Comments
 (0)