Skip to content

Commit dfc8e68

Browse files
committed
fix-ut
1 parent 1092549 commit dfc8e68

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

iotdb-core/datanode/src/test/java/org/apache/iotdb/db/utils/SchemaRegionSnapshotParserTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
import org.apache.tsfile.file.metadata.enums.CompressionType;
4949
import org.apache.tsfile.file.metadata.enums.TSEncoding;
5050
import org.apache.tsfile.utils.Binary;
51+
import org.apache.tsfile.utils.Constants;
5152
import org.apache.tsfile.utils.Pair;
5253
import org.junit.After;
5354
import org.junit.Assert;
@@ -313,7 +314,7 @@ public void testTableDeviceAttributeTranslateSnapshot() throws Exception {
313314
Arrays.asList("a", "c"),
314315
Arrays.asList(
315316
new Binary[] {new Binary("b", TSFileConfig.STRING_CHARSET)},
316-
new Binary[] {null, new Binary("d", TSFileConfig.STRING_CHARSET)})),
317+
new Object[] {Constants.NONE, new Binary("d", TSFileConfig.STRING_CHARSET)})),
317318
new CreateOrUpdateDevice(
318319
databasePath.getNodes()[1],
319320
anotherTable,

0 commit comments

Comments
 (0)