This is an automated email from the ASF dual-hosted git repository.
hxd pushed a commit to branch feature_read_data_from_unclosed_tsfile
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to
refs/heads/feature_read_data_from_unclosed_tsfile by this push:
new 92d0de7 fx apache-rat
92d0de7 is described below
commit 92d0de7332385de70a03b1212669028fd1be94e6
Author: xiangdong huang <[email protected]>
AuthorDate: Wed Mar 6 08:13:26 2019 +0800
fx apache-rat
---
.../iotdb/tsfile/write/TsFileReadWriteTest.java | 4 ++--
.../write/writer/NativeRestorableIOWriterTest.java | 19 +++++++++++++++++++
2 files changed, 21 insertions(+), 2 deletions(-)
diff --git
a/tsfile/src/test/java/org/apache/iotdb/tsfile/write/TsFileReadWriteTest.java
b/tsfile/src/test/java/org/apache/iotdb/tsfile/write/TsFileReadWriteTest.java
index 3cb2a84..516d53f 100644
---
a/tsfile/src/test/java/org/apache/iotdb/tsfile/write/TsFileReadWriteTest.java
+++
b/tsfile/src/test/java/org/apache/iotdb/tsfile/write/TsFileReadWriteTest.java
@@ -65,7 +65,7 @@ public class TsFileReadWriteTest {
public void tearDown() throws Exception {
f = new File(path);
if (f.exists()) {
- f.delete();
+ assertTrue(f.delete());;
}
}
@@ -225,7 +225,7 @@ public class TsFileReadWriteTest {
if (f.exists()) {
assertTrue(f.delete());
}
- TsFileWriter tsFileWriter = new TsFileWriter(f);
+ tsFileWriter = new TsFileWriter(f);
// add measurements into file schema
tsFileWriter
diff --git
a/tsfile/src/test/java/org/apache/iotdb/tsfile/write/writer/NativeRestorableIOWriterTest.java
b/tsfile/src/test/java/org/apache/iotdb/tsfile/write/writer/NativeRestorableIOWriterTest.java
index b80c038..370c526 100644
---
a/tsfile/src/test/java/org/apache/iotdb/tsfile/write/writer/NativeRestorableIOWriterTest.java
+++
b/tsfile/src/test/java/org/apache/iotdb/tsfile/write/writer/NativeRestorableIOWriterTest.java
@@ -1,3 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
package org.apache.iotdb.tsfile.write.writer;
import static org.junit.Assert.assertEquals;