odps-console-dship/src/tools/MakeAsciiFile.java [50:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      bw.write(s);
      if (l1%100 == 0){
        bw.flush();
        if (file.length() > (long)size*1024*1024){
          System.out.println("lines:" + l1 + "  total1:" + total1 + "  total2:"+total2);
          bw.close();
          return;
        }
      }
      
      l1++;
      d1++;
      total1 += l1;
      total2 += d1;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



odps-console-dship/src/tools/MakeTestFile.java [53:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      bw.write(s);
      if (l1%100 == 0){
        bw.flush();
        if (file.length() > (long)size*1024*1024){
          System.out.println("lines:" + l1 + "  total1:" + total1 + "  total2:"+total2);
          bw.close();
          return;
        }
      }
      
      l1++;
      d1++;
      total1 += l1;
      total2 += d1;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



