Stringsql="Insert into t3 using weather tags('广东') values('2020-01-01 01:0:00.000', 22.22),('2020-01-01 02:00:00.000', 22.22) t4 using weather tags('天津') values('2020-01-01 01:0:00.000', 33.33),('2020-01-01 02:00:00.000', 33.33)";
executeUpdate(sql);
SQLExecutor.executeUpdate(connection,sql);
}
@Test
publicvoidtestCase018(){
Stringsql="select * from restful_test.t1";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase019(){
Stringsql="select * from restful_test.weather";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase020(){
Stringsql="select ts, temperature from restful_test.t1";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase021(){
Stringsql="select ts, temperature from restful_test.weather";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase022(){
Stringsql="select temperature, ts from restful_test.t1";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase023(){
Stringsql="select temperature, ts from restful_test.weather";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase024(){
Stringsql="import into restful_test.t5 using weather tags('石家庄') values('2020-01-01 00:01:00.000', 22.22)";
executeUpdate(sql);
SQLExecutor.executeUpdate(connection,sql);
}
@Test
publicvoidtestCase025(){
Stringsql="import into restful_test.t6 using weather tags('沈阳') values('2020-01-01 00:01:00.000', 22.22),('2020-01-01 00:02:00.000', 22.22)";
executeUpdate(sql);
SQLExecutor.executeUpdate(connection,sql);
}
@Test
publicvoidtestCase026(){
Stringsql="import into restful_test.t7 using weather tags('长沙') values('2020-01-01 00:01:00.000', 22.22) restful_test.t8 using weather tags('吉林') values('2020-01-01 00:01:00.000', 22.22)";
executeUpdate(sql);
SQLExecutor.executeUpdate(connection,sql);
}
@Test
publicvoidtestCase027(){
Stringsql="import into restful_test.t9 using weather tags('武汉') values('2020-01-01 00:01:00.000', 22.22) ,('2020-01-02 00:01:00.000', 22.22) restful_test.t10 using weather tags('哈尔滨') values('2020-01-01 00:01:00.000', 22.22),('2020-01-02 00:01:00.000', 22.22)";
executeUpdate(sql);
SQLExecutor.executeUpdate(connection,sql);
}
@Test
publicvoidtestCase028(){
Stringsql="select location, temperature, ts from restful_test.weather where temperature > 1";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase029(){
Stringsql="select location, temperature, ts from restful_test.weather where temperature < 1";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase030(){
Stringsql="select location, temperature, ts from restful_test.weather where ts > now";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase031(){
Stringsql="select location, temperature, ts from restful_test.weather where ts < now";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase032(){
Stringsql="select count(*) from restful_test.weather";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase033(){
Stringsql="select first(*) from restful_test.weather";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase034(){
Stringsql="select last(*) from restful_test.weather";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase035(){
Stringsql="select last_row(*) from restful_test.weather";
executeQuery(sql);
SQLExecutor.executeQuery(connection,sql);
}
@Test
publicvoidtestCase036(){
Stringsql="select ts, ts as primary_key from restful_test.weather";