parserAstTest.cpp 17.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

16 17 18
#include <algorithm>
#include <string>

19 20
#include <gtest/gtest.h>

X
Xiaoyu Wang 已提交
21
#include "parInt.h"
22 23 24 25

using namespace std;
using namespace testing;

X
Xiaoyu Wang 已提交
26
class ParserTest : public Test {
27 28 29 30 31 32 33 34 35
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());
36 37 38
    cxt_.db = db_.c_str();
    sqlBuf_ = string(sql);
    transform(sqlBuf_.begin(), sqlBuf_.end(), sqlBuf_.begin(), ::tolower);
39
    cxt_.sqlLen = strlen(sql);
40
    cxt_.pSql = sqlBuf_.c_str();
41 42
  }

43
  bool run(int32_t parseCode = TSDB_CODE_SUCCESS, int32_t translateCode = TSDB_CODE_SUCCESS) {
X
Xiaoyu Wang 已提交
44 45 46
    query_ = nullptr;
    bool res = runImpl(parseCode, translateCode);
    qDestroyQuery(query_);
X
Xiaoyu Wang 已提交
47 48 49
    if (!res) {
      dump();
    }
X
Xiaoyu Wang 已提交
50 51 52 53 54 55 56
    return res;
  }

private:
  static const int max_err_len = 1024;

  bool runImpl(int32_t parseCode, int32_t translateCode) {
57 58
    int32_t code = doParse(&cxt_, &query_);
    if (code != TSDB_CODE_SUCCESS) {
X
Xiaoyu Wang 已提交
59 60
      parseErrStr_ = string("code:") + tstrerror(code) + string(", msg:") + errMagBuf_;
      return (terrno == parseCode);
61 62 63 64
    }
    if (TSDB_CODE_SUCCESS != parseCode) {
      return false;
    }
X
Xiaoyu Wang 已提交
65
    parsedAstStr_ = toString(query_->pRoot);
X
Xiaoyu Wang 已提交
66
    code = doTranslate(&cxt_, query_);
67
    if (code != TSDB_CODE_SUCCESS) {
X
Xiaoyu Wang 已提交
68 69
      translateErrStr_ = string("code:") + tstrerror(code) + string(", msg:") + errMagBuf_;
      return (terrno == translateCode);
70
    }
X
Xiaoyu Wang 已提交
71
    translatedAstStr_ = toString(query_->pRoot);
72
    return (TSDB_CODE_SUCCESS == translateCode);
73 74
  }

X
Xiaoyu Wang 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
  void dump() {
    cout << "input sql : [" << cxt_.pSql << "]" << endl;
    if (!parseErrStr_.empty()) {
      cout << "parse error: " << parseErrStr_ << endl;
    }
    if (!parsedAstStr_.empty()) {
      cout << "parse output: " << endl;
      cout << parsedAstStr_ << endl;
    }
    if (!translateErrStr_.empty()) {
      cout << "translate error: " << translateErrStr_ << endl;
    }
    if (!translatedAstStr_.empty()) {
      cout << "translate output: " << endl;
      cout << translatedAstStr_ << endl;
    }
  }

93 94 95 96 97 98 99
  string toString(const SNode* pRoot, bool format = false) {
    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;
      throw "nodesNodeToString failed!";
100
    }
101
    string str(pStr);
wafwerar's avatar
wafwerar 已提交
102
    taosMemoryFreeClear(pStr);
103
    return str;
104 105 106 107 108 109 110
  }

  void reset() {
    memset(&cxt_, 0, sizeof(cxt_));
    memset(errMagBuf_, 0, max_err_len);
    cxt_.pMsg = errMagBuf_;
    cxt_.msgLen = max_err_len;
X
Xiaoyu Wang 已提交
111 112 113 114
    parseErrStr_.clear();
    parsedAstStr_.clear();
    translateErrStr_.clear();
    translatedAstStr_.clear();
115 116 117 118 119
  }

  string acctId_;
  string db_;
  char errMagBuf_[max_err_len];
120
  string sqlBuf_;
121
  SParseContext cxt_;
X
Xiaoyu Wang 已提交
122
  SQuery* query_;
X
Xiaoyu Wang 已提交
123 124 125 126
  string parseErrStr_;
  string parsedAstStr_;
  string translateErrStr_;
  string translatedAstStr_;
127 128
};

X
Xiaoyu Wang 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
TEST_F(ParserTest, createAccount) {
  setDatabase("root", "test");

  bind("create account ac_wxy pass '123456'");
  ASSERT_TRUE(run(TSDB_CODE_PAR_EXPRIE_STATEMENT));
}

TEST_F(ParserTest, alterAccount) {
  setDatabase("root", "test");

  bind("alter account ac_wxy pass '123456'");
  ASSERT_TRUE(run(TSDB_CODE_PAR_EXPRIE_STATEMENT));
}

TEST_F(ParserTest, createUser) {
  setDatabase("root", "test");

  bind("create user wxy pass '123456'");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, alterUser) {
  setDatabase("root", "test");

  bind("alter user wxy pass '123456'");
  ASSERT_TRUE(run());

  bind("alter user wxy privilege 'write'");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, dropUser) {
  setDatabase("root", "test");

  bind("drop user wxy");
  ASSERT_TRUE(run());
}

X
Xiaoyu Wang 已提交
167
TEST_F(ParserTest, selectSimple) {
168 169 170
  setDatabase("root", "test");

  bind("SELECT * FROM t1");
171
  ASSERT_TRUE(run());
172 173

  bind("SELECT * FROM test.t1");
174
  ASSERT_TRUE(run());
175

176
  bind("SELECT ts, c1 FROM t1");
177 178
  ASSERT_TRUE(run());

179 180 181 182
  bind("SELECT ts, t.c1 FROM (SELECT * FROM t1) t");
  ASSERT_TRUE(run());

  bind("SELECT * FROM t1 tt1, t1 tt2 WHERE tt1.c1 = tt2.c1");
183
  ASSERT_TRUE(run());
184 185
}

X
Xiaoyu Wang 已提交
186
TEST_F(ParserTest, selectConstant) {
187 188 189 190 191 192 193 194 195
  setDatabase("root", "test");

  bind("SELECT 123, 20.4, 'abc', \"wxy\", TIMESTAMP '2022-02-09 17:30:20', true, false, 10s FROM t1");
  ASSERT_TRUE(run());

  bind("SELECT 1234567890123456789012345678901234567890, 20.1234567890123456789012345678901234567890, 'abc', \"wxy\", TIMESTAMP '2022-02-09 17:30:20', true, false, 15s FROM t1");
  ASSERT_TRUE(run());
}

X
Xiaoyu Wang 已提交
196
TEST_F(ParserTest, selectExpression) {
197 198
  setDatabase("root", "test");

199
  bind("SELECT ts + 10s, c1 + 10, concat(c2, 'abc') FROM t1");
200
  ASSERT_TRUE(run());
201 202 203 204 205 206

  bind("SELECT ts > 0, c1 < 20 AND c2 = 'qaz' FROM t1");
  ASSERT_TRUE(run());

  bind("SELECT ts > 0, c1 BETWEEN 10 AND 20 AND c2 = 'qaz' FROM t1");
  ASSERT_TRUE(run());
207 208
}

209 210 211 212 213 214 215
TEST_F(ParserTest, selectPseudoColumn) {
  setDatabase("root", "test");

  bind("SELECT _wstartts, _wendts, count(*) FROM t1 interval(10s)");
  ASSERT_TRUE(run());
}

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

219
  // GROUP BY clause
220
  bind("SELECT count(*) cnt FROM t1 WHERE c1 > 0");
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
  ASSERT_TRUE(run());

  bind("SELECT count(*), c2 cnt FROM t1 WHERE c1 > 0 GROUP BY c2");
  ASSERT_TRUE(run());

  bind("SELECT count(*) cnt FROM t1 WHERE c1 > 0 GROUP BY c2 HAVING count(c1) > 10");
  ASSERT_TRUE(run());

  bind("SELECT count(*), c1, c2 + 10, c1 + c2 cnt FROM t1 WHERE c1 > 0 GROUP BY c2, c1");
  ASSERT_TRUE(run());

  bind("SELECT count(*), c1 + 10, c2 cnt FROM t1 WHERE c1 > 0 GROUP BY c1 + 10, c2");
  ASSERT_TRUE(run());

  // ORDER BY clause
236 237 238 239 240
  bind("SELECT count(*) cnt FROM t1 WHERE c1 > 0 GROUP BY c2 ORDER BY cnt");
  ASSERT_TRUE(run());

  bind("SELECT count(*) cnt FROM t1 WHERE c1 > 0 GROUP BY c2 ORDER BY 1");
  ASSERT_TRUE(run());
241 242 243 244 245 246 247 248 249 250

  // DISTINCT clause
  bind("SELECT DISTINCT c1, c2 FROM t1 WHERE c1 > 0 ORDER BY c1");
  ASSERT_TRUE(run());

  bind("SELECT DISTINCT c1 + 10, c2 FROM t1 WHERE c1 > 0 ORDER BY c1 + 10, c2");
  ASSERT_TRUE(run());

  bind("SELECT DISTINCT c1 + 10 cc1, c2 cc2 FROM t1 WHERE c1 > 0 ORDER BY cc1, c2");
  ASSERT_TRUE(run());
251 252 253

  bind("SELECT DISTINCT count(c2) FROM t1 WHERE c1 > 0 GROUP BY c1 ORDER BY count(c2)");
  ASSERT_TRUE(run());
254 255
}

X
Xiaoyu Wang 已提交
256 257 258 259 260 261 262
TEST_F(ParserTest, selectWindow) {
  setDatabase("root", "test");

  bind("SELECT count(*) FROM t1 interval(10s)");
  ASSERT_TRUE(run());
}

X
Xiaoyu Wang 已提交
263
TEST_F(ParserTest, selectSyntaxError) {
264 265 266 267 268 269 270 271 272 273 274 275 276
  setDatabase("root", "test");

  bind("SELECTT * FROM t1");
  ASSERT_TRUE(run(TSDB_CODE_FAILED));

  bind("SELECT *");
  ASSERT_TRUE(run(TSDB_CODE_FAILED));

  bind("SELECT *, * FROM test.t1");
  ASSERT_TRUE(run(TSDB_CODE_FAILED));

  bind("SELECT * FROM test.t1 t WHER");
  ASSERT_TRUE(run(TSDB_CODE_FAILED));
277
}
278

X
Xiaoyu Wang 已提交
279
TEST_F(ParserTest, selectSemanticError) {
280 281
  setDatabase("root", "test");

282
  // TSDB_CODE_PAR_INVALID_COLUMN
283
  bind("SELECT c1, cc1 FROM t1");
284 285
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_INVALID_COLUMN));

286
  bind("SELECT t1.c1, t1.cc1 FROM t1");
287 288 289
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_INVALID_COLUMN));

  // TSDB_CODE_PAR_TABLE_NOT_EXIST
290
  bind("SELECT * FROM t10");
291
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_TABLE_NOT_EXIST));
292

293 294
  bind("SELECT * FROM test.t10");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_TABLE_NOT_EXIST));
295

296 297 298
  bind("SELECT t2.c1 FROM t1");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_TABLE_NOT_EXIST));

299
  // TSDB_CODE_PAR_AMBIGUOUS_COLUMN
300
  bind("SELECT c2 FROM t1 tt1, t1 tt2 WHERE tt1.c1 = tt2.c1");
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_AMBIGUOUS_COLUMN));

  // TSDB_CODE_PAR_WRONG_VALUE_TYPE
  bind("SELECT 10n FROM t1");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_WRONG_VALUE_TYPE));

  bind("SELECT TIMESTAMP '2010' FROM t1");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_WRONG_VALUE_TYPE));

  // TSDB_CODE_PAR_INVALID_FUNTION
  bind("SELECT cnt(*) FROM t1");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_INVALID_FUNTION));

  // TSDB_CODE_PAR_FUNTION_PARA_NUM
  // TSDB_CODE_PAR_FUNTION_PARA_TYPE

  // TSDB_CODE_PAR_ILLEGAL_USE_AGG_FUNCTION
  bind("SELECT c2 FROM t1 tt1 JOIN t1 tt2 ON count(*) > 0");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_ILLEGAL_USE_AGG_FUNCTION));
320 321

  bind("SELECT c2 FROM t1 where count(*) > 0");
322 323 324 325 326 327 328 329 330 331 332 333
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_ILLEGAL_USE_AGG_FUNCTION));

  bind("SELECT c2 FROM t1 GROUP BY count(*)");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_ILLEGAL_USE_AGG_FUNCTION));

  // TSDB_CODE_PAR_WRONG_NUMBER_OF_SELECT
  bind("SELECT c2 FROM t1 ORDER BY 0");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_WRONG_NUMBER_OF_SELECT));

  bind("SELECT c2 FROM t1 ORDER BY 2");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_WRONG_NUMBER_OF_SELECT));

334
  // TSDB_CODE_PAR_GROUPBY_LACK_EXPRESSION
335 336 337 338 339 340 341 342 343 344 345
  bind("SELECT count(*) cnt FROM t1 HAVING c1 > 0");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_GROUPBY_LACK_EXPRESSION));

  bind("SELECT count(*) cnt FROM t1 GROUP BY c2 HAVING c1 > 0");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_GROUPBY_LACK_EXPRESSION));

  bind("SELECT count(*), c1 cnt FROM t1 GROUP BY c2 HAVING c2 > 0");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_GROUPBY_LACK_EXPRESSION));

  bind("SELECT count(*) cnt FROM t1 GROUP BY c2 HAVING c2 > 0 ORDER BY c1");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_GROUPBY_LACK_EXPRESSION));
346 347 348 349 350 351 352 353 354 355 356 357 358 359

  // TSDB_CODE_PAR_NOT_SINGLE_GROUP
  bind("SELECT count(*), c1 FROM t1");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_NOT_SINGLE_GROUP));

  bind("SELECT count(*) FROM t1 ORDER BY c1");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_NOT_SINGLE_GROUP));

  bind("SELECT c1 FROM t1 ORDER BY count(*)");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_NOT_SINGLE_GROUP));

  // TSDB_CODE_PAR_NOT_SELECTED_EXPRESSION
  bind("SELECT DISTINCT c1, c2 FROM t1 WHERE c1 > 0 ORDER BY ts");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_NOT_SELECTED_EXPRESSION));
360 361 362 363 364 365

  bind("SELECT DISTINCT c1 FROM t1 WHERE c1 > 0 ORDER BY count(c2)");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_NOT_SELECTED_EXPRESSION));

  bind("SELECT DISTINCT c2 FROM t1 WHERE c1 > 0 ORDER BY count(c2)");
  ASSERT_TRUE(run(TSDB_CODE_SUCCESS, TSDB_CODE_PAR_NOT_SELECTED_EXPRESSION));
366
}
367

X
Xiaoyu Wang 已提交
368 369 370 371 372 373 374
TEST_F(ParserTest, showUsers) {
  setDatabase("root", "test");

  bind("show users");
  ASSERT_TRUE(run());
}

375 376 377 378 379 380 381 382 383 384
TEST_F(ParserTest, createDnode) {
  setDatabase("root", "test");

  bind("create dnode abc1 port 7000");
  ASSERT_TRUE(run());

  bind("create dnode 1.1.1.1 port 9000");
  ASSERT_TRUE(run());
}

X
Xiaoyu Wang 已提交
385 386 387 388 389 390 391
TEST_F(ParserTest, showDnodes) {
  setDatabase("root", "test");

  bind("show dnodes");
  ASSERT_TRUE(run());
}

392 393 394 395 396 397 398 399 400 401
TEST_F(ParserTest, alterDnode) {
  setDatabase("root", "test");

  bind("alter dnode 1 'resetLog'");
  ASSERT_TRUE(run());

  bind("alter dnode 1 'debugFlag' '134'");
  ASSERT_TRUE(run());
}

402
TEST_F(ParserTest, createDatabase) {
403 404
  setDatabase("root", "test");

405 406
  bind("create database wxy_db");
  ASSERT_TRUE(run());
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425

  bind("create database if not exists wxy_db "
       "BLOCKS 100 "
       "CACHE 100 "
       "CACHELAST 2 "
       "COMP 1 "
       "DAYS 100 "
       "FSYNC 100 "
       "MAXROWS 1000 "
       "MINROWS 100 "
       "KEEP 100 "
       "PRECISION 'ms' "
       "QUORUM 1 "
       "REPLICA 3 "
       "TTL 100 "
       "WAL 2 "
       "VGROUPS 100 "
       "SINGLE_STABLE 0 "
       "STREAM_MODE 1 "
X
Xiaoyu Wang 已提交
426
       "RETENTIONS '15s:7d,1m:21d,15m:5y'"
427 428
      );
  ASSERT_TRUE(run());
429 430
}

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
TEST_F(ParserTest, alterDatabase) {
  setDatabase("root", "test");

  bind("alter database wxy_db BLOCKS 200");
  ASSERT_TRUE(run());

  bind("alter database wxy_db "
       "BLOCKS 200 "
       "CACHELAST 1 "
       "FSYNC 200 "
       "KEEP 200 "
       "QUORUM 2 "
       "WAL 1 "
      );
  ASSERT_TRUE(run());
}

448
TEST_F(ParserTest, showDatabase) {
449 450
  setDatabase("root", "test");

451 452 453 454 455
  bind("show databases");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, useDatabase) {
456 457
  setDatabase("root", "test");

458 459 460 461 462
  bind("use wxy_db");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, createTable) {
463 464
  setDatabase("root", "test");

465 466
  bind("create table t1(ts timestamp, c1 int)");
  ASSERT_TRUE(run());
467 468 469 470 471 472 473 474 475 476 477 478 479

  bind("create table if not exists test.t1("
       "ts TIMESTAMP, c1 INT, c2 INT UNSIGNED, c3 BIGINT, c4 BIGINT UNSIGNED, c5 FLOAT, c6 DOUBLE, c7 BINARY(20), c8 SMALLINT, "
       "c9 SMALLINT UNSIGNED COMMENT 'test column comment', c10 TINYINT, c11 TINYINT UNSIGNED, c12 BOOL, c13 NCHAR(30), c14 JSON, c15 VARCHAR(50)) "
       "KEEP 100 TTL 100 COMMENT 'test create table' SMA(c1, c2, c3)"
      );
  ASSERT_TRUE(run());
  
  bind("create table if not exists test.t1("
       "ts TIMESTAMP, c1 INT, c2 INT UNSIGNED, c3 BIGINT, c4 BIGINT UNSIGNED, c5 FLOAT, c6 DOUBLE, c7 BINARY(20), c8 SMALLINT, "
       "c9 SMALLINT UNSIGNED COMMENT 'test column comment', c10 TINYINT, c11 TINYINT UNSIGNED, c12 BOOL, c13 NCHAR(30), c14 JSON, c15 VARCHAR(50)) "
       "TAGS (tsa TIMESTAMP, a1 INT, a2 INT UNSIGNED, a3 BIGINT, a4 BIGINT UNSIGNED, a5 FLOAT, a6 DOUBLE, a7 BINARY(20), a8 SMALLINT, "
       "a9 SMALLINT UNSIGNED COMMENT 'test column comment', a10 TINYINT, a11 TINYINT UNSIGNED, a12 BOOL, a13 NCHAR(30), a14 JSON, a15 VARCHAR(50)) "
X
Xiaoyu Wang 已提交
480
       "KEEP 100 TTL 100 COMMENT 'test create table' SMA(c1, c2, c3) ROLLUP (min) FILE_FACTOR 0.1 DELAY 2"
481 482 483
      );
  ASSERT_TRUE(run());
  
484
  bind("create table if not exists t1 using st1 tags(1, 'wxy')");
485 486 487
  ASSERT_TRUE(run());

  bind("create table "
488 489
       "if not exists test.t1 using test.st1 (tag1, tag2) tags(1, 'abc') "
       "if not exists test.t2 using test.st1 (tag1, tag2) tags(2, 'abc') "
X
Xiaoyu Wang 已提交
490 491 492 493
       "if not exists test.t3 using test.st1 (tag1, tag2) tags(3, 'abc') "
       "if not exists test.t4 using test.st1 (tag1, tag2) tags(3, null) "
       "if not exists test.t5 using test.st1 (tag1, tag2) tags(null, 'abc') "
       "if not exists test.t6 using test.st1 (tag1, tag2) tags(null, null)"
494 495
      );
  ASSERT_TRUE(run());
496 497 498 499 500 501 502 503 504

  bind("create stable t1(ts timestamp, c1 int) TAGS(id int)");
  ASSERT_TRUE(run());

  bind("create stable if not exists test.t1("
       "ts TIMESTAMP, c1 INT, c2 INT UNSIGNED, c3 BIGINT, c4 BIGINT UNSIGNED, c5 FLOAT, c6 DOUBLE, c7 BINARY(20), c8 SMALLINT, "
       "c9 SMALLINT UNSIGNED COMMENT 'test column comment', c10 TINYINT, c11 TINYINT UNSIGNED, c12 BOOL, c13 NCHAR(30), c14 JSON, c15 VARCHAR(50)) "
       "TAGS (tsa TIMESTAMP, a1 INT, a2 INT UNSIGNED, a3 BIGINT, a4 BIGINT UNSIGNED, a5 FLOAT, a6 DOUBLE, a7 BINARY(20), a8 SMALLINT, "
       "a9 SMALLINT UNSIGNED COMMENT 'test column comment', a10 TINYINT, a11 TINYINT UNSIGNED, a12 BOOL, a13 NCHAR(30), a14 JSON, a15 VARCHAR(50)) "
X
Xiaoyu Wang 已提交
505
       "KEEP 100 TTL 100 COMMENT 'test create table' SMA(c1, c2, c3) ROLLUP (min) FILE_FACTOR 0.1 DELAY 2"
506 507
      );
  ASSERT_TRUE(run());
508
}
X
Xiaoyu Wang 已提交
509 510 511 512

TEST_F(ParserTest, showTables) {
  setDatabase("root", "test");

X
Xiaoyu Wang 已提交
513 514
  bind("show tables");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
515

X
Xiaoyu Wang 已提交
516 517
  bind("show test.tables");
  ASSERT_TRUE(run());
X
Xiaoyu Wang 已提交
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595

  bind("show tables like 'c%'");
  ASSERT_TRUE(run());

  bind("show test.tables like 'c%'");
  ASSERT_TRUE(run());
}

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

  bind("show stables");
  ASSERT_TRUE(run());

  bind("show test.stables");
  ASSERT_TRUE(run());

  bind("show stables like 'c%'");
  ASSERT_TRUE(run());

  bind("show test.stables like 'c%'");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, showVgroups) {
  setDatabase("root", "test");

  bind("show vgroups");
  ASSERT_TRUE(run());

  bind("show test.vgroups");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, showMnodes) {
  setDatabase("root", "test");

  bind("show mnodes");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, showModules) {
  setDatabase("root", "test");

  bind("show modules");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, showQnodes) {
  setDatabase("root", "test");

  bind("show qnodes");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, showFunctions) {
  setDatabase("root", "test");

  bind("show functions");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, showIndexes) {
  setDatabase("root", "test");

  bind("show indexes from t1");
  ASSERT_TRUE(run());

  bind("show indexes from t1 from test");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, showStreams) {
  setDatabase("root", "test");

  bind("show streams");
  ASSERT_TRUE(run());
}
X
Xiaoyu Wang 已提交
596

X
Xiaoyu Wang 已提交
597 598 599
TEST_F(ParserTest, createSmaIndex) {
  setDatabase("root", "test");

600
  bind("create sma index index1 on t1 function(max(c1), min(c3 + 10), sum(c4)) INTERVAL(10s)");
X
Xiaoyu Wang 已提交
601 602
  ASSERT_TRUE(run());
}
X
Xiaoyu Wang 已提交
603

604 605 606 607 608 609 610
TEST_F(ParserTest, dropIndex) {
  setDatabase("root", "test");

  bind("drop index index1 on t1");
  ASSERT_TRUE(run());
}

X
Xiaoyu Wang 已提交
611 612 613 614 615 616
TEST_F(ParserTest, createQnode) {
  setDatabase("root", "test");

  bind("create qnode on dnode 1");
  ASSERT_TRUE(run());
}
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649

TEST_F(ParserTest, dropQnode) {
  setDatabase("root", "test");

  bind("drop qnode on dnode 1");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, createTopic) {
  setDatabase("root", "test");

  bind("create topic tp1 as select * from t1");
  ASSERT_TRUE(run());

  bind("create topic if not exists tp1 as select * from t1");
  ASSERT_TRUE(run());

  bind("create topic tp1 as test");
  ASSERT_TRUE(run());

  bind("create topic if not exists tp1 as test");
  ASSERT_TRUE(run());
}

TEST_F(ParserTest, dropTopic) {
  setDatabase("root", "test");

  bind("drop topic tp1");
  ASSERT_TRUE(run());

  bind("drop topic if exists tp1");
  ASSERT_TRUE(run());
}
650 651 652 653 654 655 656 657 658 659 660 661 662

TEST_F(ParserTest, 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());
}