@@ -67,11 +67,11 @@ public void testFeatureGroupPrimaryKey() {
67
67
68
68
StreamFeatureGroup featureGroup = new StreamFeatureGroup (featureStore , "fgName" , 1 , "description" ,
69
69
Collections .singletonList ("primaryKey" ), Collections .singletonList ("partitionKey" ), "hudiPrecombineKey" ,
70
- true , features , null , "onlineTopicName" , null , null , null , null , null , null );
70
+ true , features , null , "onlineTopicName" , null , null , null , null );
71
71
72
72
Exception pkException = assertThrows (FeatureStoreException .class , () -> {
73
73
featureGroupEngine .saveFeatureGroupMetaData (featureGroup ,
74
- null , null , null , null , null );
74
+ null , null , null , null , null );;;
75
75
});
76
76
77
77
// Assert
@@ -93,11 +93,11 @@ public void testFeatureGroupEventTimeFeature() {
93
93
94
94
StreamFeatureGroup featureGroup = new StreamFeatureGroup (featureStore , "fgName" , 1 , "description" ,
95
95
Collections .singletonList ("featureA" ), null , null ,
96
- true , features , null , "onlineTopicName" , null , null , "eventTime" , null , null , null );
96
+ true , features , null , "onlineTopicName" , null , null , "eventTime" , null );
97
97
98
98
Exception eventTimeException = assertThrows (FeatureStoreException .class , () -> {
99
99
streamFeatureGroupEngine .saveFeatureGroupMetaData (featureGroup ,
100
- null , null , null , null , null );
100
+ null , null , null , null , null );;;
101
101
});
102
102
103
103
// Assert
@@ -119,7 +119,7 @@ public void testFeatureGroupPartitionPrecombineKeys() {
119
119
120
120
StreamFeatureGroup featureGroup = new StreamFeatureGroup (featureStore , "fgName" , 1 , "description" ,
121
121
Collections .singletonList ("featureA" ), Collections .singletonList ("partitionKey" ), "hudiPrecombineKey" ,
122
- true , features , null , "onlineTopicName" , null , null , null , null , null , null );
122
+ true , features , null , "onlineTopicName" , null , null , null , null );
123
123
124
124
Exception partitionException = assertThrows (FeatureStoreException .class , () -> {
125
125
streamFeatureGroupEngine .saveFeatureGroupMetaData (featureGroup ,
@@ -164,7 +164,7 @@ public void testFeatureGroupAppendFeaturesResetSubject() throws FeatureStoreExce
164
164
165
165
StreamFeatureGroup featureGroup = new StreamFeatureGroup (featureStore , "fgName" , 1 , "description" ,
166
166
Collections .singletonList ("featureA" ), null , null ,
167
- true , features , null , "onlineTopicName" , null , null , "eventTime" , null , null , null );
167
+ true , features , null , "onlineTopicName" , null , null , "eventTime" , null );
168
168
featureGroup .featureGroupEngine = featureGroupEngine ;
169
169
170
170
// Act
0 commit comments