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 3131
3232public class ObHTableSecondaryPartUtil {
3333 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 ;" ;
3636 conn .createStatement ().execute (stmt );
3737 }
3838
3939 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 ;" ;
4242 conn .createStatement ().execute (stmt );
4343 }
4444
You can’t perform that action at this time.
0 commit comments