Skip to content

Commit 58ffd42

Browse files
authored
Revert "feat(bigtable): support update column family's value type to non-aggregate type (#10410)" (#10576)
This reverts commit df60464.
1 parent b1284bf commit 58ffd42

File tree

3 files changed

+0
-129
lines changed

3 files changed

+0
-129
lines changed

bigtable/admin.go

-31
Original file line numberDiff line numberDiff line change
@@ -688,9 +688,6 @@ func IgnoreWarnings() GCPolicyOption {
688688
}
689689

690690
func (ac *AdminClient) setGCPolicy(ctx context.Context, table, family string, policy GCPolicy, opts ...GCPolicyOption) error {
691-
if policy == nil {
692-
return fmt.Errorf("policy cannot be nil")
693-
}
694691
ctx = mergeOutgoingMetadata(ctx, ac.md)
695692
prefix := ac.instancePrefix()
696693

@@ -712,41 +709,13 @@ func (ac *AdminClient) setGCPolicy(ctx context.Context, table, family string, po
712709
return err
713710
}
714711

715-
func (ac *AdminClient) setValueTypeImpl(ctx context.Context, table, family string, valueType Type) error {
716-
if valueType == nil {
717-
return fmt.Errorf("value type must be non nil")
718-
}
719-
if _, ok := valueType.proto().GetKind().(*btapb.Type_AggregateType); ok {
720-
return fmt.Errorf("update family value type to aggregate type is unsupported")
721-
}
722-
723-
ctx = mergeOutgoingMetadata(ctx, ac.md)
724-
prefix := ac.instancePrefix()
725-
726-
req := &btapb.ModifyColumnFamiliesRequest{
727-
Name: prefix + "/tables/" + table,
728-
Modifications: []*btapb.ModifyColumnFamiliesRequest_Modification{{
729-
Id: family,
730-
Mod: &btapb.ModifyColumnFamiliesRequest_Modification_Update{Update: &btapb.ColumnFamily{ValueType: valueType.proto()}},
731-
}},
732-
}
733-
_, err := ac.tClient.ModifyColumnFamilies(ctx, req)
734-
return err
735-
}
736-
737712
// SetGCPolicy specifies which cells in a column family should be garbage collected.
738713
// GC executes opportunistically in the background; table reads may return data
739714
// matching the GC policy.
740715
func (ac *AdminClient) SetGCPolicy(ctx context.Context, table, family string, policy GCPolicy) error {
741716
return ac.SetGCPolicyWithOptions(ctx, table, family, policy)
742717
}
743718

744-
// SetValueType specifies the type of all values in a column family. Currently,
745-
// only non-aggregate type is supported.
746-
func (ac *AdminClient) SetValueType(ctx context.Context, table, family string, valueType Type) error {
747-
return ac.setValueTypeImpl(ctx, table, family, valueType)
748-
}
749-
750719
// SetGCPolicyWithOptions is similar to SetGCPolicy but allows passing options
751720
func (ac *AdminClient) SetGCPolicyWithOptions(ctx context.Context, table, family string, policy GCPolicy, opts ...GCPolicyOption) error {
752721
return ac.setGCPolicy(ctx, table, family, policy, opts...)

bigtable/admin_test.go

-32
Original file line numberDiff line numberDiff line change
@@ -410,38 +410,6 @@ func TestTableAdmin_SetGcPolicy(t *testing.T) {
410410
}
411411
}
412412

413-
func TestTableAdmin_SetType(t *testing.T) {
414-
for _, test := range []struct {
415-
desc string
416-
familyType Type
417-
hasError bool
418-
}{
419-
{
420-
desc: "Update with aggregate type failed",
421-
familyType: AggregateType{Input: Int64Type{Encoding: BigEndianBytesEncoding{}}, Aggregator: SumAggregator{}},
422-
hasError: true,
423-
},
424-
{
425-
desc: "Update with string type",
426-
familyType: StringType{Encoding: StringUtf8Encoding{}},
427-
hasError: false,
428-
},
429-
{
430-
desc: "Update with nil type",
431-
familyType: nil,
432-
hasError: true,
433-
},
434-
} {
435-
mock := &mockTableAdminClock{}
436-
c := setupTableClient(t, mock)
437-
438-
err := c.SetValueType(context.Background(), "My-table", "cf1", test.familyType)
439-
if err != nil && !test.hasError {
440-
t.Fatalf("Unexpected error when setting type: %v", err)
441-
}
442-
}
443-
}
444-
445413
func TestTableAdmin_CreateAuthorizedView_DeletionProtection_Protected(t *testing.T) {
446414
mock := &mockTableAdminClock{}
447415
c := setupTableClient(t, mock)

bigtable/integration_test.go

-66
Original file line numberDiff line numberDiff line change
@@ -3977,72 +3977,6 @@ func TestIntegration_DataAuthorizedView(t *testing.T) {
39773977
}
39783978
}
39793979

3980-
func TestIntegration_TestUpdateColumnFamilyValueType(t *testing.T) {
3981-
testEnv, err := NewIntegrationEnv()
3982-
if err != nil {
3983-
t.Fatalf("IntegrationEnv: %v", err)
3984-
}
3985-
defer testEnv.Close()
3986-
3987-
if !testEnv.Config().UseProd {
3988-
t.Skip("emulator doesn't support update column family operation")
3989-
}
3990-
3991-
timeout := 15 * time.Minute
3992-
ctx, cancel := context.WithTimeout(context.Background(), timeout)
3993-
defer cancel()
3994-
3995-
adminClient, err := testEnv.NewAdminClient()
3996-
if err != nil {
3997-
t.Fatalf("NewAdminClient: %v", err)
3998-
}
3999-
defer adminClient.Close()
4000-
4001-
tblConf := TableConf{
4002-
TableID: testEnv.Config().Table,
4003-
ColumnFamilies: map[string]Family{
4004-
"cf": {
4005-
GCPolicy: MaxVersionsPolicy(1),
4006-
},
4007-
},
4008-
}
4009-
if err := adminClient.CreateTableFromConf(ctx, &tblConf); err != nil {
4010-
t.Fatalf("Create table from TableConf error: %v", err)
4011-
}
4012-
// Clean-up
4013-
defer deleteTable(ctx, t, adminClient, tblConf.TableID)
4014-
4015-
// Update column family type to aggregate type should not be successful
4016-
err = adminClient.SetValueType(ctx, tblConf.TableID, "cf", AggregateType{
4017-
Input: Int64Type{}, Aggregator: SumAggregator{},
4018-
})
4019-
if err == nil {
4020-
t.Fatalf("Update family type to aggregate type should not be successful")
4021-
}
4022-
4023-
// Update column family type to string type should be successful
4024-
err = adminClient.SetValueType(ctx, tblConf.TableID, "cf", StringType{
4025-
Encoding: StringUtf8Encoding{},
4026-
})
4027-
if err != nil {
4028-
t.Fatalf("Failed to update value type of family: %v", err)
4029-
}
4030-
4031-
table, err := adminClient.TableInfo(ctx, tblConf.TableID)
4032-
if err != nil {
4033-
t.Fatalf("Failed to get table info: %v", err)
4034-
}
4035-
if len(table.FamilyInfos) != 0 {
4036-
t.Fatalf("Unexpected number of family infos. Got %d, want %d", len(table.FamilyInfos), 0)
4037-
}
4038-
if table.FamilyInfos[0].Name != "cf" {
4039-
t.Errorf("Unexpected family name. Got %q, want %q", table.FamilyInfos[0].Name, "cf")
4040-
}
4041-
if _, ok := table.FamilyInfos[0].ValueType.proto().GetKind().(*btapb.Type_StringType); !ok {
4042-
t.Errorf("Unexpected value type. Got %T, want *btapb.Type_StringType", table.FamilyInfos[0].ValueType.proto().GetKind())
4043-
}
4044-
}
4045-
40463980
// TestIntegration_DirectPathFallback tests the CFE fallback when the directpath net is blackholed.
40473981
func TestIntegration_DirectPathFallback(t *testing.T) {
40483982
ctx := context.Background()

0 commit comments

Comments
 (0)