@@ -3977,72 +3977,6 @@ func TestIntegration_DataAuthorizedView(t *testing.T) {
3977
3977
}
3978
3978
}
3979
3979
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
-
4046
3980
// TestIntegration_DirectPathFallback tests the CFE fallback when the directpath net is blackholed.
4047
3981
func TestIntegration_DirectPathFallback (t * testing.T ) {
4048
3982
ctx := context .Background ()
0 commit comments