Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down