executorTests.cpp 47.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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>
H
Haojun Liao 已提交
17
#include <function.h>
18 19 20 21
#include <gtest/gtest.h>
#include <tglobal.h>
#include <iostream>

S
Shengliang Guan 已提交
22 23
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
24 25 26 27 28 29 30 31 32 33 34 35
#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 已提交
36 37
#include "tmsg.h"
#include "tname.h"
38

H
Haojun Liao 已提交
39 40
namespace {

H
Haojun Liao 已提交
41 42 43 44 45 46
enum {
  data_rand = 0x1,
  data_asc  = 0x2,
  data_desc = 0x3,
};

H
Haojun Liao 已提交
47
typedef struct SDummyInputInfo {
48 49 50 51 52
  int32_t      totalPages;     // numOfPages
  int32_t      current;
  int32_t      startVal;
  int32_t      type;
  int32_t      numOfRowsPerPage;
H
Haojun Liao 已提交
53 54
  int32_t      numOfCols;      // number of columns
  int64_t      tsStart;
H
Haojun Liao 已提交
55 56 57 58 59 60
  SSDataBlock* pBlock;
} SDummyInputInfo;

SSDataBlock* getDummyBlock(void* param, bool* newgroup) {
  SOperatorInfo* pOperator = static_cast<SOperatorInfo*>(param);
  SDummyInputInfo* pInfo = static_cast<SDummyInputInfo*>(pOperator->info);
61
  if (pInfo->current >= pInfo->totalPages) {
H
Haojun Liao 已提交
62 63 64 65 66 67 68 69 70 71 72 73
    return NULL;
  }

  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;
74 75
    colInfo.pData = static_cast<char*>(calloc(pInfo->numOfRowsPerPage, sizeof(int32_t)));
    colInfo.nullbitmap = static_cast<char*>(calloc(1, (pInfo->numOfRowsPerPage + 7) / 8));
H
Haojun Liao 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96

    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};
H
Haojun Liao 已提交
97
  int32_t v = 0;
98
  for(int32_t i = 0; i < pInfo->numOfRowsPerPage; ++i) {
H
Haojun Liao 已提交
99 100
    SColumnInfoData* pColInfo = static_cast<SColumnInfoData*>(TARRAY_GET_ELEM(pBlock->pDataBlock, 0));

H
Haojun Liao 已提交
101 102 103 104 105 106 107 108
    if (pInfo->type == data_desc) {
      v = (--pInfo->startVal);
    } else if (pInfo->type == data_asc) {
      v = ++pInfo->startVal;
    } else if (pInfo->type == data_rand) {
      v = random();
    }

H
Haojun Liao 已提交
109 110 111 112 113 114 115 116 117
    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);
  }

118
  pBlock->info.rows = pInfo->numOfRowsPerPage;
H
Haojun Liao 已提交
119 120 121 122
  pBlock->info.numOfCols = 1;

  pInfo->current += 1;
  return pBlock;
123 124
}

H
Haojun Liao 已提交
125 126 127 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
SSDataBlock* get2ColsDummyBlock(void* param, bool* newgroup) {
  SOperatorInfo* pOperator = static_cast<SOperatorInfo*>(param);
  SDummyInputInfo* pInfo = static_cast<SDummyInputInfo*>(pOperator->info);
  if (pInfo->current >= pInfo->totalPages) {
    return NULL;
  }

  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_TIMESTAMP;
    colInfo.info.bytes = sizeof(int64_t);
    colInfo.info.colId = 1;
    colInfo.pData = static_cast<char*>(calloc(pInfo->numOfRowsPerPage, sizeof(int64_t)));
//    colInfo.nullbitmap = static_cast<char*>(calloc(1, (pInfo->numOfRowsPerPage + 7) / 8));

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

    SColumnInfoData colInfo1 = {0};
    colInfo1.info.type = TSDB_DATA_TYPE_INT;
    colInfo1.info.bytes = 4;
    colInfo1.info.colId = 2;

    colInfo1.pData = static_cast<char*>(calloc(pInfo->numOfRowsPerPage, sizeof(int32_t)));
    colInfo1.nullbitmap = static_cast<char*>(calloc(1, (pInfo->numOfRowsPerPage + 7) / 8));

    taosArrayPush(pInfo->pBlock->pDataBlock, &colInfo1);
  } else {
    blockDataClearup(pInfo->pBlock, false);
  }

  SSDataBlock* pBlock = pInfo->pBlock;

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

    ts = (++pInfo->tsStart);
    colDataAppend(pColInfo, i, reinterpret_cast<const char*>(&ts), false);

    SColumnInfoData* pColInfo1 = static_cast<SColumnInfoData*>(TARRAY_GET_ELEM(pBlock->pDataBlock, 1));
    if (pInfo->type == data_desc) {
      v = (--pInfo->startVal);
    } else if (pInfo->type == data_asc) {
      v = ++pInfo->startVal;
    } else if (pInfo->type == data_rand) {
      v = random();
    }

    colDataAppend(pColInfo1, 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 = pInfo->numOfRowsPerPage;
  pBlock->info.numOfCols = 1;

  pInfo->current += 1;

  blockDataUpdateTsWindow(pBlock);
  return pBlock;

}

SOperatorInfo* createDummyOperator(int32_t startVal, int32_t numOfBlocks, int32_t rowsPerPage, int32_t type, int32_t numOfCols) {
H
Haojun Liao 已提交
200 201
  SOperatorInfo* pOperator = static_cast<SOperatorInfo*>(calloc(1, sizeof(SOperatorInfo)));
  pOperator->name = "dummyInputOpertor4Test";
H
Haojun Liao 已提交
202 203 204 205 206 207

  if (numOfCols == 1) {
    pOperator->exec = getDummyBlock;
  } else {
    pOperator->exec = get2ColsDummyBlock;
  }
H
Haojun Liao 已提交
208 209

  SDummyInputInfo *pInfo = (SDummyInputInfo*) calloc(1, sizeof(SDummyInputInfo));
210 211 212 213
  pInfo->totalPages = numOfBlocks;
  pInfo->startVal   = startVal;
  pInfo->numOfRowsPerPage = rowsPerPage;
  pInfo->type       = type;
H
Haojun Liao 已提交
214
  pInfo->tsStart    = 1620000000000;
H
Haojun Liao 已提交
215 216 217 218 219

  pOperator->info = pInfo;
  return pOperator;
}
}
220 221 222 223 224 225 226
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 已提交
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 711 712 713 714 715 716 717 718 719 720 721 722 723 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 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 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
      "    \"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"
      "}";
810 811

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

H
Haojun Liao 已提交
815 816 817 818 819 820
  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 已提交
821 822
}

H
Haojun Liao 已提交
823
#if 0
X
Xiaoyu Wang 已提交
824

H
Haojun Liao 已提交
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840
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);

H
Haojun Liao 已提交
841
  SOperatorInfo* pOperator = createOrderOperatorInfo(createDummyOperator(5), pExprInfo, pOrderVal, NULL);
H
Haojun Liao 已提交
842 843 844 845 846 847 848

  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) {
849
    char* p = colDataGetData(pCol2, i);
H
Haojun Liao 已提交
850 851 852 853 854
    printf("%d: %d, %s\n", i, ((int32_t*)pCol1->pData)[i], (char*)varDataVal(p));
  }
}

#endif
H
Haojun Liao 已提交
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873

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;
  }
}

X
Xiaoyu Wang 已提交
874
#if 0
H
Haojun Liao 已提交
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
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

  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);

910
  SOperatorInfo* pOperator = createOrderOperatorInfo(createDummyOperator(1500), pExprInfo, pOrderVal, NULL);
H
Haojun Liao 已提交
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932

  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 已提交
933
    SColumnInfoData* pCol1 = static_cast<SColumnInfoData*>(taosArrayGet(pRes->pDataBlock, 0));
H
Haojun Liao 已提交
934
//    SColumnInfoData* pCol2 = static_cast<SColumnInfoData*>(taosArrayGet(pRes->pDataBlock, 1));
H
Haojun Liao 已提交
935
    for (int32_t i = 0; i < pRes->info.rows; ++i) {
936
//      char* p = colDataGetData(pCol2, i);
H
Haojun Liao 已提交
937
      printf("%d: %d\n", total++, ((int32_t*)pCol1->pData)[i]);
H
Haojun Liao 已提交
938
//      printf("%d: %d, %s\n", total++, ((int32_t*)pCol1->pData)[i], (char*)varDataVal(p));
H
Haojun Liao 已提交
939
    }
H
Haojun Liao 已提交
940 941 942 943 944 945 946 947 948 949 950
  }

  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 已提交
951

H
Haojun Liao 已提交
952 953 954 955 956 957 958 959 960 961 962 963
TEST(testCase, sorted_merge_Test) {
  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)));
964 965 966 967 968 969
  exp->base.resSchema = createSchema(TSDB_DATA_TYPE_BIGINT, sizeof(int64_t), 1, "count_result");
  exp->base.pColumns = static_cast<SColumn*>(calloc(1, sizeof(SColumn)));
  exp->base.pColumns->flag = TSDB_COL_NORMAL;
  exp->base.pColumns->info = (SColumnInfo) {.colId = 1, .type = TSDB_DATA_TYPE_INT, .bytes = 4};
  exp->base.numOfCols = 1;

H
Haojun Liao 已提交
970 971 972 973 974 975
  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 已提交
976 977 978
  int32_t numOfSources = 10;
  SOperatorInfo** plist = (SOperatorInfo**) calloc(numOfSources, sizeof(void*));
  for(int32_t i = 0; i < numOfSources; ++i) {
979
    plist[i] = createDummyOperator(1, 1, 1, data_asc);
H
Haojun Liao 已提交
980 981
  }

982
  SOperatorInfo* pOperator = createSortedMergeOperatorInfo(plist, numOfSources, pExprInfo, pOrderVal, NULL, NULL);
H
Haojun Liao 已提交
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007

  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;
    }

    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) {
1008 1009
//      char* p = colDataGetData(pCol2, i);
      printf("%d: %ld\n", total++, ((int64_t*)pCol1->pData)[i]);
H
Haojun Liao 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
//      printf("%d: %d, %s\n", total++, ((int32_t*)pCol1->pData)[i], (char*)varDataVal(p));
    }
  }

  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 已提交
1023

H
Haojun Liao 已提交
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
TEST(testCase, time_interval_Operator_Test) {
  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_TIMESTAMP, sizeof(int64_t), 1, "ts");
  exp->base.pColumns = static_cast<SColumn*>(calloc(1, sizeof(SColumn)));
  exp->base.pColumns->flag = TSDB_COL_NORMAL;
  exp->base.pColumns->info = (SColumnInfo) {.colId = 1, .type = TSDB_DATA_TYPE_TIMESTAMP, .bytes = 8};
  exp->base.numOfCols = 1;

  taosArrayPush(pExprInfo, &exp);

  SExprInfo *exp1 = static_cast<SExprInfo*>(calloc(1, sizeof(SExprInfo)));
  exp1->base.resSchema = createSchema(TSDB_DATA_TYPE_BIGINT, 8, 2, "res1");
  exp1->base.pColumns = static_cast<SColumn*>(calloc(1, sizeof(SColumn)));
  exp1->base.pColumns->flag = TSDB_COL_NORMAL;
  exp1->base.pColumns->info = (SColumnInfo) {.colId = 1, .type = TSDB_DATA_TYPE_INT, .bytes = 4};
  exp1->base.numOfCols = 1;

  taosArrayPush(pExprInfo, &exp1);

  SOperatorInfo* p = createDummyOperator(1, 1, 2000, data_asc, 2);

  SExecTaskInfo ti = {0};
  SOperatorInfo* pOperator = createIntervalOperatorInfo(p, pExprInfo, &ti);

  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;
    }

    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 = colDataGetData(pCol2, i);
      printf("%d: %ld\n", total++, ((int64_t*)pCol1->pData)[i]);
//      printf("%d: %d, %s\n", total++, ((int32_t*)pCol1->pData)[i], (char*)varDataVal(p));
    }
  }
H
Haojun Liao 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096

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

  pOperator->cleanupFn(pOperator->info, 2);
  tfree(exp);
  tfree(exp1);
  taosArrayDestroy(pExprInfo);
  taosArrayDestroy(pOrderVal);
}
X
Xiaoyu Wang 已提交
1097
#endif
H
Haojun Liao 已提交
1098

L
Liu Jicong 已提交
1099
#pragma GCC diagnostic pop