executorTests.cpp 39.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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 <executorimpl.h>
#include <gtest/gtest.h>
#include <tglobal.h>
#include <iostream>

S
Shengliang Guan 已提交
21 22
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
23 24 25 26 27 28 29 30 31 32 33 34
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wsign-compare"
#include "os.h"

#include "taos.h"
#include "tdef.h"
#include "tvariant.h"
#include "tep.h"
#include "trpc.h"
#include "stub.h"
#include "executor.h"
D
dapan1121 已提交
35 36
#include "tmsg.h"
#include "tname.h"
37

H
Haojun Liao 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
namespace {

typedef struct SDummyInputInfo {
  int32_t max;
  int32_t current;
  int32_t startVal;
  SSDataBlock* pBlock;
} SDummyInputInfo;

SSDataBlock* getDummyBlock(void* param, bool* newgroup) {
  SOperatorInfo* pOperator = static_cast<SOperatorInfo*>(param);
  SDummyInputInfo* pInfo = static_cast<SDummyInputInfo*>(pOperator->info);
  if (pInfo->current >= pInfo->max) {
    return NULL;
  }

  int32_t numOfRows = 1000;

  if (pInfo->pBlock == NULL) {
    pInfo->pBlock = static_cast<SSDataBlock*>(calloc(1, sizeof(SSDataBlock)));

    pInfo->pBlock->pDataBlock = taosArrayInit(4, sizeof(SColumnInfoData));

    SColumnInfoData colInfo = {0};
    colInfo.info.type = TSDB_DATA_TYPE_INT;
    colInfo.info.bytes = sizeof(int32_t);
    colInfo.info.colId = 1;
    colInfo.pData = static_cast<char*>(calloc(numOfRows, sizeof(int32_t)));
    colInfo.nullbitmap = static_cast<char*>(calloc(1, (numOfRows + 7) / 8));

    taosArrayPush(pInfo->pBlock->pDataBlock, &colInfo);

//    SColumnInfoData colInfo1 = {0};
//    colInfo1.info.type = TSDB_DATA_TYPE_BINARY;
//    colInfo1.info.bytes = 40;
//    colInfo1.info.colId = 2;
//
//    colInfo1.varmeta.allocLen = 0;//numOfRows * sizeof(int32_t);
//    colInfo1.varmeta.length = 0;
//    colInfo1.varmeta.offset = static_cast<int32_t*>(calloc(1, numOfRows * sizeof(int32_t)));
//
//    taosArrayPush(pInfo->pBlock->pDataBlock, &colInfo1);
  } else {
    blockDataClearup(pInfo->pBlock, true);
  }

  SSDataBlock* pBlock = pInfo->pBlock;

  char buf[128] = {0};
  char b1[128] = {0};
  for(int32_t i = 0; i < numOfRows; ++i) {
    SColumnInfoData* pColInfo = static_cast<SColumnInfoData*>(TARRAY_GET_ELEM(pBlock->pDataBlock, 0));

H
Haojun Liao 已提交
91
    int32_t v = (--pInfo->startVal);
H
Haojun Liao 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105
    colDataAppend(pColInfo, i, reinterpret_cast<const char*>(&v), false);

//    sprintf(buf, "this is %d row", i);
//    STR_TO_VARSTR(b1, buf);
//
//    SColumnInfoData* pColInfo2 = static_cast<SColumnInfoData*>(TARRAY_GET_ELEM(pBlock->pDataBlock, 1));
//    colDataAppend(pColInfo2, i, b1, false);
  }

  pBlock->info.rows = numOfRows;
  pBlock->info.numOfCols = 1;

  pInfo->current += 1;
  return pBlock;
106 107
}

H
Haojun Liao 已提交
108 109 110 111 112 113 114
SOperatorInfo* createDummyOperator(int32_t numOfBlocks) {
  SOperatorInfo* pOperator = static_cast<SOperatorInfo*>(calloc(1, sizeof(SOperatorInfo)));
  pOperator->name = "dummyInputOpertor4Test";
  pOperator->exec = getDummyBlock;

  SDummyInputInfo *pInfo = (SDummyInputInfo*) calloc(1, sizeof(SDummyInputInfo));
  pInfo->max = numOfBlocks;
H
Haojun Liao 已提交
115
  pInfo->startVal = 1500000;
H
Haojun Liao 已提交
116 117 118 119 120

  pOperator->info = pInfo;
  return pOperator;
}
}
121 122 123 124 125 126 127
int main(int argc, char** argv) {
  testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}

TEST(testCase, build_executor_tree_Test) {
  const char* msg = "{\n"
H
Haojun Liao 已提交
128 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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 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 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 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 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
      "    \"Type\": \"33\",\n"
      "    \"Name\": \"PhysiProject\",\n"
      "    \"PhysiProject\": {\n"
      "        \"OutputDataBlockDesc\": {\n"
      "            \"Type\": \"19\",\n"
      "            \"Name\": \"TupleDesc\",\n"
      "            \"TupleDesc\": {\n"
      "                \"DataBlockId\": \"1\",\n"
      "                \"Slots\": [\n"
      "                    {\n"
      "                        \"Type\": \"20\",\n"
      "                        \"Name\": \"SlotDesc\",\n"
      "                        \"SlotDesc\": {\n"
      "                            \"SlotId\": \"0\",\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"9\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"Reserve\": false,\n"
      "                            \"Output\": false\n"
      "                        }\n"
      "                    },\n"
      "                    {\n"
      "                        \"Type\": \"20\",\n"
      "                        \"Name\": \"SlotDesc\",\n"
      "                        \"SlotDesc\": {\n"
      "                            \"SlotId\": \"1\",\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"4\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"4\"\n"
      "                            },\n"
      "                            \"Reserve\": false,\n"
      "                            \"Output\": false\n"
      "                        }\n"
      "                    },\n"
      "                    {\n"
      "                        \"Type\": \"20\",\n"
      "                        \"Name\": \"SlotDesc\",\n"
      "                        \"SlotDesc\": {\n"
      "                            \"SlotId\": \"2\",\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"8\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"20\"\n"
      "                            },\n"
      "                            \"Reserve\": false,\n"
      "                            \"Output\": false\n"
      "                        }\n"
      "                    },\n"
      "                    {\n"
      "                        \"Type\": \"20\",\n"
      "                        \"Name\": \"SlotDesc\",\n"
      "                        \"SlotDesc\": {\n"
      "                            \"SlotId\": \"3\",\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"5\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"Reserve\": false,\n"
      "                            \"Output\": false\n"
      "                        }\n"
      "                    },\n"
      "                    {\n"
      "                        \"Type\": \"20\",\n"
      "                        \"Name\": \"SlotDesc\",\n"
      "                        \"SlotDesc\": {\n"
      "                            \"SlotId\": \"4\",\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"7\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"Reserve\": false,\n"
      "                            \"Output\": false\n"
      "                        }\n"
      "                    },\n"
      "                    {\n"
      "                        \"Type\": \"20\",\n"
      "                        \"Name\": \"SlotDesc\",\n"
      "                        \"SlotDesc\": {\n"
      "                            \"SlotId\": \"5\",\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"7\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"Reserve\": false,\n"
      "                            \"Output\": false\n"
      "                        }\n"
      "                    }\n"
      "                ]\n"
      "            }\n"
      "        },\n"
      "        \"Children\": [\n"
      "            {\n"
      "                \"Type\": \"30\",\n"
      "                \"Name\": \"PhysiTableScan\",\n"
      "                \"PhysiTableScan\": {\n"
      "                    \"OutputDataBlockDesc\": {\n"
      "                        \"Type\": \"19\",\n"
      "                        \"Name\": \"TupleDesc\",\n"
      "                        \"TupleDesc\": {\n"
      "                            \"DataBlockId\": \"0\",\n"
      "                            \"Slots\": [\n"
      "                                {\n"
      "                                    \"Type\": \"20\",\n"
      "                                    \"Name\": \"SlotDesc\",\n"
      "                                    \"SlotDesc\": {\n"
      "                                        \"SlotId\": \"0\",\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"9\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"Reserve\": false,\n"
      "                                        \"Output\": true\n"
      "                                    }\n"
      "                                },\n"
      "                                {\n"
      "                                    \"Type\": \"20\",\n"
      "                                    \"Name\": \"SlotDesc\",\n"
      "                                    \"SlotDesc\": {\n"
      "                                        \"SlotId\": \"1\",\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"4\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"4\"\n"
      "                                        },\n"
      "                                        \"Reserve\": false,\n"
      "                                        \"Output\": true\n"
      "                                    }\n"
      "                                },\n"
      "                                {\n"
      "                                    \"Type\": \"20\",\n"
      "                                    \"Name\": \"SlotDesc\",\n"
      "                                    \"SlotDesc\": {\n"
      "                                        \"SlotId\": \"2\",\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"8\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"20\"\n"
      "                                        },\n"
      "                                        \"Reserve\": false,\n"
      "                                        \"Output\": true\n"
      "                                    }\n"
      "                                },\n"
      "                                {\n"
      "                                    \"Type\": \"20\",\n"
      "                                    \"Name\": \"SlotDesc\",\n"
      "                                    \"SlotDesc\": {\n"
      "                                        \"SlotId\": \"3\",\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"5\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"Reserve\": false,\n"
      "                                        \"Output\": true\n"
      "                                    }\n"
      "                                },\n"
      "                                {\n"
      "                                    \"Type\": \"20\",\n"
      "                                    \"Name\": \"SlotDesc\",\n"
      "                                    \"SlotDesc\": {\n"
      "                                        \"SlotId\": \"4\",\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"7\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"Reserve\": false,\n"
      "                                        \"Output\": true\n"
      "                                    }\n"
      "                                },\n"
      "                                {\n"
      "                                    \"Type\": \"20\",\n"
      "                                    \"Name\": \"SlotDesc\",\n"
      "                                    \"SlotDesc\": {\n"
      "                                        \"SlotId\": \"5\",\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"7\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"Reserve\": false,\n"
      "                                        \"Output\": true\n"
      "                                    }\n"
      "                                }\n"
      "                            ]\n"
      "                        }\n"
      "                    },\n"
      "                    \"ScanCols\": [\n"
      "                        {\n"
      "                            \"Type\": \"18\",\n"
      "                            \"Name\": \"Target\",\n"
      "                            \"Target\": {\n"
      "                                \"DataBlockId\": \"0\",\n"
      "                                \"SlotId\": \"0\",\n"
      "                                \"Expr\": {\n"
      "                                    \"Type\": \"1\",\n"
      "                                    \"Name\": \"Column\",\n"
      "                                    \"Column\": {\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"9\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"AliasName\": \"ts\",\n"
      "                                        \"TableId\": \"0\",\n"
      "                                        \"ColId\": \"1\",\n"
      "                                        \"ColType\": \"1\",\n"
      "                                        \"DbName\": \"test\",\n"
      "                                        \"TableName\": \"t1\",\n"
      "                                        \"TableAlias\": \"t1\",\n"
      "                                        \"ColName\": \"ts\",\n"
      "                                        \"DataBlockId\": \"0\",\n"
      "                                        \"SlotId\": \"0\"\n"
      "                                    }\n"
      "                                }\n"
      "                            }\n"
      "                        },\n"
      "                        {\n"
      "                            \"Type\": \"18\",\n"
      "                            \"Name\": \"Target\",\n"
      "                            \"Target\": {\n"
      "                                \"DataBlockId\": \"0\",\n"
      "                                \"SlotId\": \"1\",\n"
      "                                \"Expr\": {\n"
      "                                    \"Type\": \"1\",\n"
      "                                    \"Name\": \"Column\",\n"
      "                                    \"Column\": {\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"4\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"4\"\n"
      "                                        },\n"
      "                                        \"AliasName\": \"c1\",\n"
      "                                        \"TableId\": \"0\",\n"
      "                                        \"ColId\": \"2\",\n"
      "                                        \"ColType\": \"1\",\n"
      "                                        \"DbName\": \"test\",\n"
      "                                        \"TableName\": \"t1\",\n"
      "                                        \"TableAlias\": \"t1\",\n"
      "                                        \"ColName\": \"c1\",\n"
      "                                        \"DataBlockId\": \"0\",\n"
      "                                        \"SlotId\": \"0\"\n"
      "                                    }\n"
      "                                }\n"
      "                            }\n"
      "                        },\n"
      "                        {\n"
      "                            \"Type\": \"18\",\n"
      "                            \"Name\": \"Target\",\n"
      "                            \"Target\": {\n"
      "                                \"DataBlockId\": \"0\",\n"
      "                                \"SlotId\": \"2\",\n"
      "                                \"Expr\": {\n"
      "                                    \"Type\": \"1\",\n"
      "                                    \"Name\": \"Column\",\n"
      "                                    \"Column\": {\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"8\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"20\"\n"
      "                                        },\n"
      "                                        \"AliasName\": \"c2\",\n"
      "                                        \"TableId\": \"0\",\n"
      "                                        \"ColId\": \"3\",\n"
      "                                        \"ColType\": \"1\",\n"
      "                                        \"DbName\": \"test\",\n"
      "                                        \"TableName\": \"t1\",\n"
      "                                        \"TableAlias\": \"t1\",\n"
      "                                        \"ColName\": \"c2\",\n"
      "                                        \"DataBlockId\": \"0\",\n"
      "                                        \"SlotId\": \"0\"\n"
      "                                    }\n"
      "                                }\n"
      "                            }\n"
      "                        },\n"
      "                        {\n"
      "                            \"Type\": \"18\",\n"
      "                            \"Name\": \"Target\",\n"
      "                            \"Target\": {\n"
      "                                \"DataBlockId\": \"0\",\n"
      "                                \"SlotId\": \"3\",\n"
      "                                \"Expr\": {\n"
      "                                    \"Type\": \"1\",\n"
      "                                    \"Name\": \"Column\",\n"
      "                                    \"Column\": {\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"5\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"AliasName\": \"c3\",\n"
      "                                        \"TableId\": \"0\",\n"
      "                                        \"ColId\": \"4\",\n"
      "                                        \"ColType\": \"1\",\n"
      "                                        \"DbName\": \"test\",\n"
      "                                        \"TableName\": \"t1\",\n"
      "                                        \"TableAlias\": \"t1\",\n"
      "                                        \"ColName\": \"c3\",\n"
      "                                        \"DataBlockId\": \"0\",\n"
      "                                        \"SlotId\": \"0\"\n"
      "                                    }\n"
      "                                }\n"
      "                            }\n"
      "                        },\n"
      "                        {\n"
      "                            \"Type\": \"18\",\n"
      "                            \"Name\": \"Target\",\n"
      "                            \"Target\": {\n"
      "                                \"DataBlockId\": \"0\",\n"
      "                                \"SlotId\": \"4\",\n"
      "                                \"Expr\": {\n"
      "                                    \"Type\": \"1\",\n"
      "                                    \"Name\": \"Column\",\n"
      "                                    \"Column\": {\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"7\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"AliasName\": \"c4\",\n"
      "                                        \"TableId\": \"0\",\n"
      "                                        \"ColId\": \"5\",\n"
      "                                        \"ColType\": \"1\",\n"
      "                                        \"DbName\": \"test\",\n"
      "                                        \"TableName\": \"t1\",\n"
      "                                        \"TableAlias\": \"t1\",\n"
      "                                        \"ColName\": \"c4\",\n"
      "                                        \"DataBlockId\": \"0\",\n"
      "                                        \"SlotId\": \"0\"\n"
      "                                    }\n"
      "                                }\n"
      "                            }\n"
      "                        },\n"
      "                        {\n"
      "                            \"Type\": \"18\",\n"
      "                            \"Name\": \"Target\",\n"
      "                            \"Target\": {\n"
      "                                \"DataBlockId\": \"0\",\n"
      "                                \"SlotId\": \"5\",\n"
      "                                \"Expr\": {\n"
      "                                    \"Type\": \"1\",\n"
      "                                    \"Name\": \"Column\",\n"
      "                                    \"Column\": {\n"
      "                                        \"DataType\": {\n"
      "                                            \"Type\": \"7\",\n"
      "                                            \"Precision\": \"0\",\n"
      "                                            \"Scale\": \"0\",\n"
      "                                            \"Bytes\": \"8\"\n"
      "                                        },\n"
      "                                        \"AliasName\": \"c5\",\n"
      "                                        \"TableId\": \"0\",\n"
      "                                        \"ColId\": \"6\",\n"
      "                                        \"ColType\": \"1\",\n"
      "                                        \"DbName\": \"test\",\n"
      "                                        \"TableName\": \"t1\",\n"
      "                                        \"TableAlias\": \"t1\",\n"
      "                                        \"ColName\": \"c5\",\n"
      "                                        \"DataBlockId\": \"0\",\n"
      "                                        \"SlotId\": \"0\"\n"
      "                                    }\n"
      "                                }\n"
      "                            }\n"
      "                        }\n"
      "                    ],\n"
      "                    \"TableId\": \"1\",\n"
      "                    \"TableType\": \"3\",\n"
      "                    \"ScanOrder\": \"1\",\n"
      "                    \"ScanCount\": \"1\",\n"
      "                    \"ReverseScanCount\": \"0\",\n"
      "                    \"ScanFlag\": \"0\",\n"
      "                    \"StartKey\": \"-9223372036854775808\",\n"
      "                    \"EndKey\": \"9223372036854775807\"\n"
      "                }\n"
      "            }\n"
      "        ],\n"
      "        \"Projections\": [\n"
      "            {\n"
      "                \"Type\": \"18\",\n"
      "                \"Name\": \"Target\",\n"
      "                \"Target\": {\n"
      "                    \"DataBlockId\": \"1\",\n"
      "                    \"SlotId\": \"0\",\n"
      "                    \"Expr\": {\n"
      "                        \"Type\": \"1\",\n"
      "                        \"Name\": \"Column\",\n"
      "                        \"Column\": {\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"9\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"AliasName\": \"ts\",\n"
      "                            \"TableId\": \"0\",\n"
      "                            \"ColId\": \"1\",\n"
      "                            \"ColType\": \"1\",\n"
      "                            \"DbName\": \"test\",\n"
      "                            \"TableName\": \"t1\",\n"
      "                            \"TableAlias\": \"t1\",\n"
      "                            \"ColName\": \"ts\",\n"
      "                            \"DataBlockId\": \"0\",\n"
      "                            \"SlotId\": \"0\"\n"
      "                        }\n"
      "                    }\n"
      "                }\n"
      "            },\n"
      "            {\n"
      "                \"Type\": \"18\",\n"
      "                \"Name\": \"Target\",\n"
      "                \"Target\": {\n"
      "                    \"DataBlockId\": \"1\",\n"
      "                    \"SlotId\": \"1\",\n"
      "                    \"Expr\": {\n"
      "                        \"Type\": \"1\",\n"
      "                        \"Name\": \"Column\",\n"
      "                        \"Column\": {\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"4\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"4\"\n"
      "                            },\n"
      "                            \"AliasName\": \"c1\",\n"
      "                            \"TableId\": \"0\",\n"
      "                            \"ColId\": \"2\",\n"
      "                            \"ColType\": \"1\",\n"
      "                            \"DbName\": \"test\",\n"
      "                            \"TableName\": \"t1\",\n"
      "                            \"TableAlias\": \"t1\",\n"
      "                            \"ColName\": \"c1\",\n"
      "                            \"DataBlockId\": \"0\",\n"
      "                            \"SlotId\": \"1\"\n"
      "                        }\n"
      "                    }\n"
      "                }\n"
      "            },\n"
      "            {\n"
      "                \"Type\": \"18\",\n"
      "                \"Name\": \"Target\",\n"
      "                \"Target\": {\n"
      "                    \"DataBlockId\": \"1\",\n"
      "                    \"SlotId\": \"2\",\n"
      "                    \"Expr\": {\n"
      "                        \"Type\": \"1\",\n"
      "                        \"Name\": \"Column\",\n"
      "                        \"Column\": {\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"8\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"20\"\n"
      "                            },\n"
      "                            \"AliasName\": \"c2\",\n"
      "                            \"TableId\": \"0\",\n"
      "                            \"ColId\": \"3\",\n"
      "                            \"ColType\": \"1\",\n"
      "                            \"DbName\": \"test\",\n"
      "                            \"TableName\": \"t1\",\n"
      "                            \"TableAlias\": \"t1\",\n"
      "                            \"ColName\": \"c2\",\n"
      "                            \"DataBlockId\": \"0\",\n"
      "                            \"SlotId\": \"2\"\n"
      "                        }\n"
      "                    }\n"
      "                }\n"
      "            },\n"
      "            {\n"
      "                \"Type\": \"18\",\n"
      "                \"Name\": \"Target\",\n"
      "                \"Target\": {\n"
      "                    \"DataBlockId\": \"1\",\n"
      "                    \"SlotId\": \"3\",\n"
      "                    \"Expr\": {\n"
      "                        \"Type\": \"1\",\n"
      "                        \"Name\": \"Column\",\n"
      "                        \"Column\": {\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"5\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"AliasName\": \"c3\",\n"
      "                            \"TableId\": \"0\",\n"
      "                            \"ColId\": \"4\",\n"
      "                            \"ColType\": \"1\",\n"
      "                            \"DbName\": \"test\",\n"
      "                            \"TableName\": \"t1\",\n"
      "                            \"TableAlias\": \"t1\",\n"
      "                            \"ColName\": \"c3\",\n"
      "                            \"DataBlockId\": \"0\",\n"
      "                            \"SlotId\": \"3\"\n"
      "                        }\n"
      "                    }\n"
      "                }\n"
      "            },\n"
      "            {\n"
      "                \"Type\": \"18\",\n"
      "                \"Name\": \"Target\",\n"
      "                \"Target\": {\n"
      "                    \"DataBlockId\": \"1\",\n"
      "                    \"SlotId\": \"4\",\n"
      "                    \"Expr\": {\n"
      "                        \"Type\": \"1\",\n"
      "                        \"Name\": \"Column\",\n"
      "                        \"Column\": {\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"7\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"AliasName\": \"c4\",\n"
      "                            \"TableId\": \"0\",\n"
      "                            \"ColId\": \"5\",\n"
      "                            \"ColType\": \"1\",\n"
      "                            \"DbName\": \"test\",\n"
      "                            \"TableName\": \"t1\",\n"
      "                            \"TableAlias\": \"t1\",\n"
      "                            \"ColName\": \"c4\",\n"
      "                            \"DataBlockId\": \"0\",\n"
      "                            \"SlotId\": \"4\"\n"
      "                        }\n"
      "                    }\n"
      "                }\n"
      "            },\n"
      "            {\n"
      "                \"Type\": \"18\",\n"
      "                \"Name\": \"Target\",\n"
      "                \"Target\": {\n"
      "                    \"DataBlockId\": \"1\",\n"
      "                    \"SlotId\": \"5\",\n"
      "                    \"Expr\": {\n"
      "                        \"Type\": \"1\",\n"
      "                        \"Name\": \"Column\",\n"
      "                        \"Column\": {\n"
      "                            \"DataType\": {\n"
      "                                \"Type\": \"7\",\n"
      "                                \"Precision\": \"0\",\n"
      "                                \"Scale\": \"0\",\n"
      "                                \"Bytes\": \"8\"\n"
      "                            },\n"
      "                            \"AliasName\": \"c5\",\n"
      "                            \"TableId\": \"0\",\n"
      "                            \"ColId\": \"6\",\n"
      "                            \"ColType\": \"1\",\n"
      "                            \"DbName\": \"test\",\n"
      "                            \"TableName\": \"t1\",\n"
      "                            \"TableAlias\": \"t1\",\n"
      "                            \"ColName\": \"c5\",\n"
      "                            \"DataBlockId\": \"0\",\n"
      "                            \"SlotId\": \"5\"\n"
      "                        }\n"
      "                    }\n"
      "                }\n"
      "            }\n"
      "        ]\n"
      "    }\n"
      "}";
711 712

  SExecTaskInfo* pTaskInfo = nullptr;
D
dapan1121 已提交
713
  DataSinkHandle sinkHandle = nullptr;
H
Haojun Liao 已提交
714 715
  SReadHandle handle = {.reader = reinterpret_cast<void*>(0x1), .meta = reinterpret_cast<void*>(0x1)};

H
Haojun Liao 已提交
716 717 718 719 720 721
  struct SSubplan *plan = NULL;
  int32_t code = qStringToSubplan(msg, &plan);
  ASSERT_EQ(code, 0);

  code = qCreateExecTask(&handle, 2, 1, plan, (void**) &pTaskInfo, &sinkHandle);
  ASSERT_EQ(code, 0);
S
Shengliang Guan 已提交
722 723
}

H
Haojun Liao 已提交
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
#if 0
TEST(testCase, inMem_sort_Test) {
  SArray* pOrderVal = taosArrayInit(4, sizeof(SOrder));
  SOrder o = {.order = TSDB_ORDER_ASC};
  o.col.info.colId = 1;
  o.col.info.type = TSDB_DATA_TYPE_INT;
  taosArrayPush(pOrderVal, &o);

  SArray* pExprInfo = taosArrayInit(4, sizeof(SExprInfo));
  SExprInfo *exp = static_cast<SExprInfo*>(calloc(1, sizeof(SExprInfo)));
  exp->base.resSchema = createSchema(TSDB_DATA_TYPE_INT, sizeof(int32_t), 1, "res");
  taosArrayPush(pExprInfo, &exp);

  SExprInfo *exp1 = static_cast<SExprInfo*>(calloc(1, sizeof(SExprInfo)));
  exp1->base.resSchema = createSchema(TSDB_DATA_TYPE_BINARY, 40, 2, "res1");
  taosArrayPush(pExprInfo, &exp1);

  SOperatorInfo* pOperator = createOrderOperatorInfo(createDummyOperator(5), pExprInfo, pOrderVal);

  bool newgroup = false;
  SSDataBlock* pRes = pOperator->exec(pOperator, &newgroup);

  SColumnInfoData* pCol1 = static_cast<SColumnInfoData*>(taosArrayGet(pRes->pDataBlock, 0));
  SColumnInfoData* pCol2 = static_cast<SColumnInfoData*>(taosArrayGet(pRes->pDataBlock, 1));
  for(int32_t i = 0; i < pRes->info.rows; ++i) {
    char* p = colDataGet(pCol2, i);
    printf("%d: %d, %s\n", i, ((int32_t*)pCol1->pData)[i], (char*)varDataVal(p));
  }
}

#endif
H
Haojun Liao 已提交
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790

typedef struct su {
  int32_t v;
  char   *c;
} su;

int32_t cmp(const void* p1, const void* p2) {
  su* v1 = (su*) p1;
  su* v2 = (su*) p2;

  int32_t x1 = *(int32_t*) v1->c;
  int32_t x2 = *(int32_t*) v2->c;
  if (x1 == x2) {
    return 0;
  } else {
    return x1 < x2? -1:1;
  }
}

TEST(testCase, external_sort_Test) {
#if 0
  su* v = static_cast<su*>(calloc(1000000, sizeof(su)));
  for(int32_t i = 0; i < 1000000; ++i) {
    v[i].v = rand();
    v[i].c = static_cast<char*>(malloc(4));
    *(int32_t*) v[i].c = i;
  }

  qsort(v, 1000000, sizeof(su), cmp);
//  for(int32_t i = 0; i < 1000; ++i) {
//    printf("%d ", v[i]);
//  }
//  printf("\n");
  return;
#endif

H
Haojun Liao 已提交
791
#if 0
H
Haojun Liao 已提交
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
  srand(time(NULL));

  SArray* pOrderVal = taosArrayInit(4, sizeof(SOrder));
  SOrder o = {0};
  o.order = TSDB_ORDER_ASC;
  o.col.info.colId = 1;
  o.col.info.type = TSDB_DATA_TYPE_INT;
  taosArrayPush(pOrderVal, &o);

  SArray* pExprInfo = taosArrayInit(4, sizeof(SExprInfo));
  SExprInfo *exp = static_cast<SExprInfo*>(calloc(1, sizeof(SExprInfo)));
  exp->base.resSchema = createSchema(TSDB_DATA_TYPE_INT, sizeof(int32_t), 1, "res");
  taosArrayPush(pExprInfo, &exp);

  SExprInfo *exp1 = static_cast<SExprInfo*>(calloc(1, sizeof(SExprInfo)));
  exp1->base.resSchema = createSchema(TSDB_DATA_TYPE_BINARY, 40, 2, "res1");
//  taosArrayPush(pExprInfo, &exp1);

H
Haojun Liao 已提交
810
  SOperatorInfo* pOperator = createOrderOperatorInfo(createDummyOperator(1500), pExprInfo, pOrderVal);
H
Haojun Liao 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832

  bool newgroup = false;
  SSDataBlock* pRes = NULL;

  int32_t total = 1;

  int64_t s1 = taosGetTimestampUs();
  int32_t t = 1;

  while(1) {
    int64_t s = taosGetTimestampUs();
    pRes = pOperator->exec(pOperator, &newgroup);

    int64_t e = taosGetTimestampUs();
    if (t++ == 1) {
      printf("---------------elapsed:%ld\n", e - s);
    }

    if (pRes == NULL) {
      break;
    }

H
Haojun Liao 已提交
833
    SColumnInfoData* pCol1 = static_cast<SColumnInfoData*>(taosArrayGet(pRes->pDataBlock, 0));
H
Haojun Liao 已提交
834
//    SColumnInfoData* pCol2 = static_cast<SColumnInfoData*>(taosArrayGet(pRes->pDataBlock, 1));
H
Haojun Liao 已提交
835
    for (int32_t i = 0; i < pRes->info.rows; ++i) {
H
Haojun Liao 已提交
836
//      char* p = colDataGet(pCol2, i);
H
Haojun Liao 已提交
837
      printf("%d: %d\n", total++, ((int32_t*)pCol1->pData)[i]);
H
Haojun Liao 已提交
838
//      printf("%d: %d, %s\n", total++, ((int32_t*)pCol1->pData)[i], (char*)varDataVal(p));
H
Haojun Liao 已提交
839
    }
H
Haojun Liao 已提交
840 841 842 843 844 845 846 847 848 849 850 851
  }

  printStatisBeforeClose(((SOrderOperatorInfo*) pOperator->info)->pSortInternalBuf);

  int64_t s2 = taosGetTimestampUs();
  printf("total:%ld\n", s2 - s1);

  pOperator->cleanupFn(pOperator->info, 2);
  tfree(exp);
  tfree(exp1);
  taosArrayDestroy(pExprInfo);
  taosArrayDestroy(pOrderVal);
H
Haojun Liao 已提交
852
#endif
H
Haojun Liao 已提交
853
}
L
Liu Jicong 已提交
854
#pragma GCC diagnostic pop