odps-console-basic/src/main/java/com/aliyun/openservices/odps/console/commands/FreezeCommand.java [52:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      String commandText,
      ExecutionContext context) {
    super(commandText, context);
  }

  @Override
  protected void run() throws OdpsException, ODPSConsoleException {
    ExecutionContext context = getContext();
    DefaultOutputWriter writer = context.getOutputWriter();

    // do retry
    int retryTime = context.getRetryTimes();
    retryTime = retryTime > 0 ? retryTime : 1;
    while (true) {
      try {
        MergeTask task;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



odps-console-basic/src/main/java/com/aliyun/openservices/odps/console/commands/RestoreCommand.java [52:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      String commandText,
      ExecutionContext context) {
    super(commandText, context);
  }

  @Override
  protected void run() throws OdpsException, ODPSConsoleException {
    ExecutionContext context = getContext();
    DefaultOutputWriter writer = context.getOutputWriter();

    // do retry
    int retryTime = context.getRetryTimes();
    retryTime = retryTime > 0 ? retryTime : 1;
    while (true) {
      try {
        MergeTask task;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



