diff --git a/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java b/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java index 70dc86f192d88..d98a7696a85ba 100644 --- a/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java +++ b/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java @@ -189,7 +189,8 @@ private void testSetTimeDisplay(String timeDisplay, String gt) { public void testSelectColumnStatementWithTimeFilter() { InterpreterResult actual = interpreter.internalInterpret( - "select * from root.test.wf01.wt01 where time > 2 and time < 6", null); + "select temperature, status, hardware from root.test.wf01.wt01 where time > 2 and time < 6", + null); String gt = "Time\troot.test.wf01.wt01.temperature\troot.test.wf01.wt01.status\troot.test.wf01.wt01.hardware\n" + "3\t3.3\tfalse\t33.0\n"