File tree Expand file tree Collapse file tree 2 files changed +422
-0
lines changed Expand file tree Collapse file tree 2 files changed +422
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ func InsertDataCMD(f cmdutil.Factory) *cobra.Command {
102
102
103
103
cmd .AddCommand (data .InsertRedisDataCMD (f ))
104
104
cmd .AddCommand (data .InsertMySQLDataCMD (f ))
105
+ cmd .AddCommand (data .InsertMariaDBDataCMD (f ))
105
106
106
107
return cmd
107
108
}
@@ -139,6 +140,7 @@ func VerifyDataCMD(f cmdutil.Factory) *cobra.Command {
139
140
140
141
cmd .AddCommand (data .VerifyRedisDataCMD (f ))
141
142
cmd .AddCommand (data .VerifyMySQLDataCMD (f ))
143
+ cmd .AddCommand (data .VerifyMariaDBDataCMD (f ))
142
144
143
145
return cmd
144
146
}
@@ -176,6 +178,7 @@ func DropDataCMD(f cmdutil.Factory) *cobra.Command {
176
178
177
179
cmd .AddCommand (data .DropRedisDataCMD (f ))
178
180
cmd .AddCommand (data .DropMySQLDataCMD (f ))
181
+ cmd .AddCommand (data .DropMariaDBDataCMD (f ))
179
182
180
183
return cmd
181
184
}
You can’t perform that action at this time.
0 commit comments