plannerTest.cpp 10.0 KB
Newer Older
X
Xiaoyu Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#include <algorithm>

#include <gtest/gtest.h>

X
Xiaoyu Wang 已提交
20
#include "cmdnodes.h"
X
Xiaoyu Wang 已提交
21
#include "parser.h"
X
Xiaoyu Wang 已提交
22
#include "planInt.h"
X
Xiaoyu Wang 已提交
23 24 25 26

using namespace std;
using namespace testing;

X
Xiaoyu Wang 已提交
27
class PlannerTest : public Test {
X
Xiaoyu Wang 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
protected:
  void setDatabase(const string& acctId, const string& db) {
    acctId_ = acctId;
    db_ = db;
  }

  void bind(const char* sql) {
    reset();
    cxt_.acctId = atoi(acctId_.c_str());
    cxt_.db = db_.c_str();
    sqlBuf_ = string(sql);
    transform(sqlBuf_.begin(), sqlBuf_.end(), sqlBuf_.begin(), ::tolower);
    cxt_.sqlLen = strlen(sql);
    cxt_.pSql = sqlBuf_.c_str();
  }

X
bugfix  
Xiaoyu Wang 已提交
44
  bool run(bool streamQuery = false) {
X
Xiaoyu Wang 已提交
45
    int32_t code = qParseQuerySql(&cxt_, &query_);
X
Xiaoyu Wang 已提交
46

X
Xiaoyu Wang 已提交
47
    if (code != TSDB_CODE_SUCCESS) {
48
      cout << "sql:[" << cxt_.pSql << "] qParseQuerySql code:" << code << ", strerror:" << tstrerror(code) << ", msg:" << errMagBuf_ << endl;
X
Xiaoyu Wang 已提交
49 50
      return false;
    }
X
Xiaoyu Wang 已提交
51

X
Xiaoyu Wang 已提交
52
    const string syntaxTreeStr = toString(query_->pRoot, false);
X
Xiaoyu Wang 已提交
53
  
X
Xiaoyu Wang 已提交
54
    SLogicNode* pLogicNode = nullptr;
H
Haojun Liao 已提交
55 56 57 58 59
    SPlanContext cxt = {0};
    cxt.queryId = 1;
    cxt.acctId = 0;
    cxt.streamQuery = streamQuery;

X
Xiaoyu Wang 已提交
60
    setPlanContext(query_, &cxt);
X
Xiaoyu Wang 已提交
61
    code = createLogicPlan(&cxt, &pLogicNode);
X
Xiaoyu Wang 已提交
62
    if (code != TSDB_CODE_SUCCESS) {
X
Xiaoyu Wang 已提交
63
      cout << "sql:[" << cxt_.pSql << "] createLogicPlan code:" << code << ", strerror:" << tstrerror(code) << endl;
X
Xiaoyu Wang 已提交
64 65
      return false;
    }
X
Xiaoyu Wang 已提交
66
  
X
Xiaoyu Wang 已提交
67
    cout << "====================sql : [" << cxt_.pSql << "]" << endl;
X
bugfix  
Xiaoyu Wang 已提交
68
    cout << "syntax tree : " << endl;
X
Xiaoyu Wang 已提交
69 70
    cout << syntaxTreeStr << endl;
    cout << "unformatted logic plan : " << endl;
X
Xiaoyu Wang 已提交
71 72
    cout << toString((const SNode*)pLogicNode, false) << endl;

73 74 75 76 77 78
    code = optimizeLogicPlan(&cxt, pLogicNode);
    if (code != TSDB_CODE_SUCCESS) {
      cout << "sql:[" << cxt_.pSql << "] optimizeLogicPlan code:" << code << ", strerror:" << tstrerror(code) << endl;
      return false;
    }

X
Xiaoyu Wang 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    SLogicSubplan* pLogicSubplan = nullptr;
    code = splitLogicPlan(&cxt, pLogicNode, &pLogicSubplan);
    if (code != TSDB_CODE_SUCCESS) {
      cout << "sql:[" << cxt_.pSql << "] splitLogicPlan code:" << code << ", strerror:" << tstrerror(code) << endl;
      return false;
    }

    SQueryLogicPlan* pLogicPlan = NULL;
    code = scaleOutLogicPlan(&cxt, pLogicSubplan, &pLogicPlan);
    if (code != TSDB_CODE_SUCCESS) {
      cout << "sql:[" << cxt_.pSql << "] createPhysiPlan code:" << code << ", strerror:" << tstrerror(code) << endl;
      return false;
    }

    SQueryPlan* pPlan = nullptr;
    code = createPhysiPlan(&cxt, pLogicPlan, &pPlan, NULL);
    if (code != TSDB_CODE_SUCCESS) {
      cout << "sql:[" << cxt_.pSql << "] createPhysiPlan code:" << code << ", strerror:" << tstrerror(code) << endl;
      return false;
    }
  
    cout << "unformatted physical plan : " << endl;
    cout << toString((const SNode*)pPlan, false) << endl;
    SNode* pNode;
    FOREACH(pNode, pPlan->pSubplans) {
      SNode* pSubplan;
      FOREACH(pSubplan, ((SNodeListNode*)pNode)->pNodeList) {
        cout << "unformatted physical subplan : " << endl;
        cout << toString(pSubplan, false) << endl;
X
Xiaoyu Wang 已提交
108
      }
X
Xiaoyu Wang 已提交
109 110
    }

X
Xiaoyu Wang 已提交
111 112 113 114 115 116
    return true;
  }

private:
  static const int max_err_len = 1024;

X
Xiaoyu Wang 已提交
117 118 119 120
  void setPlanContext(SQuery* pQuery, SPlanContext* pCxt) {
    if (QUERY_NODE_CREATE_TOPIC_STMT == nodeType(pQuery->pRoot)) {
      pCxt->pAstRoot = ((SCreateTopicStmt*)pQuery->pRoot)->pQuery;
      pCxt->topicQuery = true;
X
bugfix  
Xiaoyu Wang 已提交
121 122 123 124 125
    } else if (QUERY_NODE_CREATE_INDEX_STMT == nodeType(pQuery->pRoot)) {
      SMCreateSmaReq req = {0};
      tDeserializeSMCreateSmaReq(pQuery->pCmdMsg->pMsg, pQuery->pCmdMsg->msgLen, &req);
      nodesStringToNode(req.ast, &pCxt->pAstRoot);
      pCxt->streamQuery = true;
X
Xiaoyu Wang 已提交
126 127 128 129 130
    } else {
      pCxt->pAstRoot = pQuery->pRoot;
    }
  }

X
Xiaoyu Wang 已提交
131 132 133 134 135 136 137
  void reset() {
    memset(&cxt_, 0, sizeof(cxt_));
    memset(errMagBuf_, 0, max_err_len);
    cxt_.pMsg = errMagBuf_;
    cxt_.msgLen = max_err_len;
  }

X
Xiaoyu Wang 已提交
138 139 140 141 142 143 144 145 146
  string toString(const SNode* pRoot, bool format = true) {
    char* pStr = NULL;
    int32_t len = 0;
    int32_t code = nodesNodeToString(pRoot, format, &pStr, &len);
    if (code != TSDB_CODE_SUCCESS) {
      cout << "sql:[" << cxt_.pSql << "] toString code:" << code << ", strerror:" << tstrerror(code) << endl;
      return string();
    }
    string str(pStr);
wafwerar's avatar
wafwerar 已提交
147
    taosMemoryFreeClear(pStr);
X
Xiaoyu Wang 已提交
148 149 150
    return str;
  }

X
Xiaoyu Wang 已提交
151 152 153 154 155
  string acctId_;
  string db_;
  char errMagBuf_[max_err_len];
  string sqlBuf_;
  SParseContext cxt_;
X
Xiaoyu Wang 已提交
156
  SQuery* query_;
X
Xiaoyu Wang 已提交
157 158
};

159
TEST_F(PlannerTest, selectBasic) {
X
Xiaoyu Wang 已提交
160 161 162 163 164
  setDatabase("root", "test");

  bind("SELECT * FROM t1");
  ASSERT_TRUE(run());
}
X
Xiaoyu Wang 已提交
165

X
Xiaoyu Wang 已提交
166 167 168 169 170 171 172
TEST_F(PlannerTest, selectConstant) {
  setDatabase("root", "test");

  bind("SELECT 2-1 FROM t1");
  ASSERT_TRUE(run());
}

173
TEST_F(PlannerTest, selectStableBasic) {
X
Xiaoyu Wang 已提交
174 175 176 177 178 179
  setDatabase("root", "test");

  bind("SELECT * FROM st1");
  ASSERT_TRUE(run());
}

180 181 182
TEST_F(PlannerTest, selectJoin) {
  setDatabase("root", "test");

183 184
  bind("SELECT t1.c1, t2.c2 FROM st1s1 t1, st1s2 t2 where t1.ts = t2.ts");
  ASSERT_TRUE(run());
185

186 187
  bind("SELECT t1.*, t2.* FROM st1s1 t1, st1s2 t2 where t1.ts = t2.ts");
  ASSERT_TRUE(run());
188

189
  bind("SELECT t1.c1, t2.c1 FROM st1s1 t1 join st1s2 t2 on t1.ts = t2.ts where t1.c1 > t2.c1 and t1.c2 = 'abc' and t2.c2 = 'qwe'");
190 191 192 193
  ASSERT_TRUE(run());
}

TEST_F(PlannerTest, selectGroupBy) {
X
Xiaoyu Wang 已提交
194 195
  setDatabase("root", "test");

X
Xiaoyu Wang 已提交
196 197
  bind("SELECT count(*) FROM t1");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
198

199 200
  bind("SELECT c1, max(c3), min(c3), count(*) FROM t1 GROUP BY c1");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
201

202 203
  bind("SELECT c1 + c3, c1 + count(*) FROM t1 where c2 = 'abc' GROUP BY c1, c3");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
204

205 206
  bind("SELECT c1 + c3, sum(c4 * c5) FROM t1 where concat(c2, 'wwww') = 'abcwww' GROUP BY c1 + c3");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
207
}
X
Xiaoyu Wang 已提交
208

209
TEST_F(PlannerTest, selectSubquery) {
X
Xiaoyu Wang 已提交
210 211 212 213 214
  setDatabase("root", "test");

  bind("SELECT count(*) FROM (SELECT c1 + c3 a, c1 + count(*) b FROM t1 where c2 = 'abc' GROUP BY c1, c3) where a > 100 group by b");
  ASSERT_TRUE(run());
}
X
Xiaoyu Wang 已提交
215

216
TEST_F(PlannerTest, selectInterval) {
X
Xiaoyu Wang 已提交
217 218
  setDatabase("root", "test");

X
Xiaoyu Wang 已提交
219
  bind("SELECT count(*) FROM t1 interval(10s)");
X
Xiaoyu Wang 已提交
220 221
  ASSERT_TRUE(run());

X
Xiaoyu Wang 已提交
222 223
  bind("SELECT _wstartts, _wduration, _wendts, count(*) FROM t1 interval(10s)");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
224

X
Xiaoyu Wang 已提交
225 226
  bind("SELECT count(*) FROM t1 interval(10s) fill(linear)");
  ASSERT_TRUE(run());
227

X
Xiaoyu Wang 已提交
228 229
  bind("SELECT count(*), sum(c1) FROM t1 interval(10s) fill(value, 10, 20)");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
230
}
X
Xiaoyu Wang 已提交
231

232
TEST_F(PlannerTest, selectSessionWindow) {
X
Xiaoyu Wang 已提交
233 234 235 236 237 238
  setDatabase("root", "test");

  bind("SELECT count(*) FROM t1 session(ts, 10s)");
  ASSERT_TRUE(run());
}

239
TEST_F(PlannerTest, selectStateWindow) {
240 241 242 243 244 245 246 247 248
  setDatabase("root", "test");

  bind("SELECT count(*) FROM t1 state_window(c1)");
  ASSERT_TRUE(run());

  bind("SELECT count(*) FROM t1 state_window(c1 + 10)");
  ASSERT_TRUE(run());
}

249
TEST_F(PlannerTest, selectPartitionBy) {
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
  setDatabase("root", "test");

  bind("SELECT * FROM t1 partition by c1");
  ASSERT_TRUE(run());

  bind("SELECT count(*) FROM t1 partition by c1");
  ASSERT_TRUE(run());

  bind("SELECT count(*) FROM t1 partition by c1 group by c2");
  ASSERT_TRUE(run());

  bind("SELECT count(*) FROM st1 partition by tag1, tag2 interval(10s)");
  ASSERT_TRUE(run());
}

265
TEST_F(PlannerTest, selectOrderBy) {
X
Xiaoyu Wang 已提交
266 267
  setDatabase("root", "test");

268
  bind("SELECT c1 FROM t1 order by c1");
X
Xiaoyu Wang 已提交
269 270 271 272 273 274 275
  ASSERT_TRUE(run());

  bind("SELECT c1 FROM t1 order by c2");
  ASSERT_TRUE(run());

  bind("SELECT * FROM t1 order by c1 + 10, c2");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
276 277 278

  bind("SELECT * FROM t1 order by c1 desc nulls first");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
279 280
}

281
TEST_F(PlannerTest, selectGroupByOrderBy) {
282 283 284 285 286 287 288 289 290
  setDatabase("root", "test");

  bind("select count(*), sum(c1) from t1 order by sum(c1)");
  ASSERT_TRUE(run());

  bind("select count(*), sum(c1) a from t1 order by a");
  ASSERT_TRUE(run());
}

291
TEST_F(PlannerTest, selectDistinct) {
292 293 294 295 296 297 298 299 300 301 302 303
  setDatabase("root", "test");

  bind("SELECT distinct c1 FROM t1");
  ASSERT_TRUE(run());

  bind("SELECT distinct c1, c2 + 10 FROM t1");
  ASSERT_TRUE(run());

  bind("SELECT distinct c1 + 10 a FROM t1 order by a");
  ASSERT_TRUE(run());
}

304
TEST_F(PlannerTest, selectLimit) {
305 306 307 308 309 310 311 312 313 314 315 316
  setDatabase("root", "test");

  bind("SELECT * FROM t1 limit 2");
  ASSERT_TRUE(run());

  bind("SELECT * FROM t1 limit 5 offset 2");
  ASSERT_TRUE(run());

  bind("SELECT * FROM t1 limit 2, 5");
  ASSERT_TRUE(run());
}

317
TEST_F(PlannerTest, selectSlimit) {
318 319 320 321 322 323 324 325 326 327 328 329
  setDatabase("root", "test");

  bind("SELECT * FROM t1 partition by c1 slimit 2");
  ASSERT_TRUE(run());

  bind("SELECT * FROM t1 partition by c1 slimit 5 soffset 2");
  ASSERT_TRUE(run());

  bind("SELECT * FROM t1 partition by c1 slimit 2, 5");
  ASSERT_TRUE(run());
}

X
Xiaoyu Wang 已提交
330 331 332 333
TEST_F(PlannerTest, showTables) {
  setDatabase("root", "test");

  bind("show tables");
X
Xiaoyu Wang 已提交
334
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
335 336 337 338 339

  setDatabase("root", "information_schema");

  bind("show tables");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
340 341 342 343 344 345 346
}

TEST_F(PlannerTest, showStables) {
  setDatabase("root", "test");

  bind("show stables");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
347 348
}

X
Xiaoyu Wang 已提交
349 350 351 352
TEST_F(PlannerTest, createTopic) {
  setDatabase("root", "test");

  bind("create topic tp as SELECT * FROM st1");
X
Xiaoyu Wang 已提交
353 354
  ASSERT_TRUE(run());
}
X
bugfix  
Xiaoyu Wang 已提交
355 356 357 358 359 360 361

TEST_F(PlannerTest, stream) {
  setDatabase("root", "test");

  bind("SELECT sum(c1) FROM st1");
  ASSERT_TRUE(run(true));
}
X
bugfix  
Xiaoyu Wang 已提交
362 363 364 365 366 367 368

TEST_F(PlannerTest, createSmaIndex) {
  setDatabase("root", "test");

  bind("create sma index index1 on t1 function(max(c1), min(c3 + 10), sum(c4)) INTERVAL(10s)");
  ASSERT_TRUE(run());
}
369 370 371 372 373 374 375 376 377 378 379 380 381

TEST_F(PlannerTest, explain) {
  setDatabase("root", "test");

  bind("explain SELECT * FROM t1");
  ASSERT_TRUE(run());

  bind("explain analyze SELECT * FROM t1");
  ASSERT_TRUE(run());

  bind("explain analyze verbose true ratio 0.01 SELECT * FROM t1");
  ASSERT_TRUE(run());
}