File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/test/java/com/alipay/oceanbase/hbase/util Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
32
32
public class ObHTableSecondaryPartUtil {
33
33
public static void openDistributedExecute () throws Exception {
34
- Connection conn = ObHTableTestUtil .getSysConnection ();
35
- String stmt = "ALTER SYSTEM SET _obkv_feature_mode = 'distributed_execute=on' ;" ;
34
+ Connection conn = ObHTableTestUtil .getConnection ();
35
+ String stmt = "ALTER SYSTEM SET _obkv_enable_distributed_execution = true ;" ;
36
36
conn .createStatement ().execute (stmt );
37
37
}
38
38
39
39
public static void closeDistributedExecute () throws Exception {
40
- Connection conn = ObHTableTestUtil .getSysConnection ();
41
- String stmt = "ALTER SYSTEM SET _obkv_feature_mode = 'distributed_execute=off' ;" ;
40
+ Connection conn = ObHTableTestUtil .getConnection ();
41
+ String stmt = "ALTER SYSTEM SET _obkv_enable_distributed_execution = false ;" ;
42
42
conn .createStatement ().execute (stmt );
43
43
}
44
44
You can’t perform that action at this time.
0 commit comments