[chore] remove some ut temp files and add some file to .gitignore (#8309)
This commit is contained in:
11
.gitignore
vendored
11
.gitignore
vendored
@ -20,6 +20,7 @@ thirdparty/installed
|
||||
core.*
|
||||
extension/**/.classpath
|
||||
extension/**/target
|
||||
nohup.out
|
||||
|
||||
fe/log
|
||||
custom_env.sh
|
||||
@ -34,8 +35,14 @@ fe_plugins/**/.classpath
|
||||
fe_plugins/**/.factorypath
|
||||
samples/**/.classpath
|
||||
fe/fe-core/src/main/resources/static/
|
||||
nohup.out
|
||||
|
||||
fs_brokers/apache_hdfs_broker/src/main/resources/
|
||||
fs_brokers/apache_hdfs_broker/src/main/thrift/
|
||||
samples/doris-demo/remote-udf-python-demo/*_pb2.py
|
||||
samples/doris-demo/remote-udf-python-demo/*_pb2_grpc.py
|
||||
samples/doris-demo/remote-udf-cpp-demo/*.o
|
||||
samples/doris-demo/remote-udf-cpp-demo/*.pb.h
|
||||
samples/doris-demo/remote-udf-cpp-demo/*.pb.cc
|
||||
samples/doris-demo/remote-udf-cpp-demo/function_server_demo
|
||||
regression-test/framework/target
|
||||
regression-test/framework/dependency-reduced-pom.xml
|
||||
|
||||
|
||||
@ -392,6 +392,7 @@ public class SchemaChangeJobV2Test {
|
||||
// prepare file
|
||||
File file = new File(fileName);
|
||||
file.createNewFile();
|
||||
file.deleteOnExit();
|
||||
DataOutputStream out = new DataOutputStream(new FileOutputStream(file));
|
||||
|
||||
SchemaChangeJobV2 schemaChangeJobV2 = new SchemaChangeJobV2(1, 1,1, "test",600000);
|
||||
|
||||
@ -56,6 +56,7 @@ public class DiskInfoTest {
|
||||
// write disk info to file
|
||||
File file = new File("./diskInfoTest");
|
||||
file.createNewFile();
|
||||
file.deleteOnExit();
|
||||
DataOutputStream dos = new DataOutputStream(new FileOutputStream(file));
|
||||
|
||||
DiskInfo diskInfo1 = new DiskInfo("/disk1");
|
||||
|
||||
@ -43,6 +43,7 @@ public class AlterRoutineLoadOperationLogTest {
|
||||
// 1. Write objects to file
|
||||
File file = new File(fileName);
|
||||
file.createNewFile();
|
||||
file.deleteOnExit();
|
||||
DataOutputStream out = new DataOutputStream(new FileOutputStream(file));
|
||||
|
||||
long jobId = 1000;
|
||||
|
||||
Reference in New Issue
Block a user