trow.c 23.6 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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/>.
H
Hongze Cheng 已提交
14 15
 */

S
common  
Shengliang Guan 已提交
16
#define _DEFAULT_SOURCE
H
Hongze Cheng 已提交
17 18
#include "trow.h"

C
Cary Xu 已提交
19 20 21 22 23 24 25 26
const uint8_t tdVTypeByte[2][3] = {{
                                       // 2 bits
                                       TD_VTYPE_NORM_BYTE_II,
                                       TD_VTYPE_NONE_BYTE_II,
                                       TD_VTYPE_NULL_BYTE_II,
                                   },
                                   {
                                       // 1 bit
C
Cary Xu 已提交
27 28
                                       TD_VTYPE_NORM_BYTE_I, TD_VTYPE_NULL_BYTE_I,
                                       TD_VTYPE_NULL_BYTE_I,  // padding
C
Cary Xu 已提交
29 30
                                   }

K
Kaili Xu 已提交
31 32
};

C
Cary Xu 已提交
33 34 35 36 37 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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
// declaration
static uint8_t tdGetBitmapByte(uint8_t byte);

// implementation
/**
 * @brief Compress bitmap bytes comprised of 2-bits to counterpart of 1-bit.
 * e.g.
 * TD_VTYPE_NORM 0x00U(00000000) to 00000000 Normal
 * TD_VTYPE_NULL 0x01U(00000001) to 00000001 Null
 * TD_VTYPE_NONE 0x02U(00000010) to 00000001 Null
 *
 * 00000000 0x00 0x00
 * 01000000 0x40 0x08
 * 10000000 0x80 0x08
 *  ...
 * @param byte
 * @return uint8_t
 */
static uint8_t tdGetMergedBitmapByte(uint8_t byte) {
  switch (byte) {
    case 0x00:
      return 0x00;
    case 0x40:
      return 0x08;
    case 0x80:
      return 0x08;
    case 0x10:
      return 0x04;
    case 0x50:
      return 0x0c;
    case 0x90:
      return 0x0c;
    case 0x20:
      return 0x04;
    case 0x60:
      return 0x0c;
    case 0xa0:
      return 0x0c;
    case 0x04:
      return 0x02;
    case 0x44:
      return 0x0a;
    case 0x84:
      return 0x0a;
    case 0x14:
      return 0x06;
    case 0x54:
      return 0x0e;
    case 0x94:
      return 0x0e;
    case 0x24:
      return 0x06;
    case 0x64:
      return 0x0e;
    case 0xa4:
      return 0x0e;
    case 0x08:
      return 0x02;
    case 0x48:
      return 0x0a;
    case 0x88:
      return 0x0a;
    case 0x18:
      return 0x06;
    case 0x58:
      return 0x0e;
    case 0x98:
      return 0x0e;
    case 0x28:
      return 0x06;
    case 0x68:
      return 0x0e;
    case 0xa8:
      return 0x0e;
    case 0x01:
      return 0x01;
    case 0x41:
      return 0x09;
    case 0x81:
      return 0x09;
    case 0x11:
      return 0x05;
    case 0x51:
      return 0x0d;
    case 0x91:
      return 0x0d;
    case 0x21:
      return 0x05;
    case 0x61:
      return 0x0d;
    case 0xa1:
      return 0x0d;
    case 0x05:
      return 0x03;
    case 0x45:
      return 0x0b;
    case 0x85:
      return 0x0b;
    case 0x15:
      return 0x07;
    case 0x55:
      return 0x0f;
    case 0x95:
      return 0x0f;
    case 0x25:
      return 0x07;
    case 0x65:
      return 0x0f;
    case 0xa5:
      return 0x0f;
    case 0x09:
      return 0x03;
    case 0x49:
      return 0x0b;
    case 0x89:
      return 0x0b;
    case 0x19:
      return 0x07;
    case 0x59:
      return 0x0f;
    case 0x99:
      return 0x0f;
    case 0x29:
      return 0x07;
    case 0x69:
      return 0x0f;
    case 0xa9:
      return 0x0f;
    case 0x02:
      return 0x01;
    case 0x42:
      return 0x09;
    case 0x82:
      return 0x09;
    case 0x12:
      return 0x05;
    case 0x52:
      return 0x0d;
    case 0x92:
      return 0x0d;
    case 0x22:
      return 0x05;
    case 0x62:
      return 0x0d;
    case 0xa2:
      return 0x0d;
    case 0x06:
      return 0x03;
    case 0x46:
      return 0x0b;
    case 0x86:
      return 0x0b;
    case 0x16:
      return 0x07;
    case 0x56:
      return 0x0f;
    case 0x96:
      return 0x0f;
    case 0x26:
      return 0x07;
    case 0x66:
      return 0x0f;
    case 0xa6:
      return 0x0f;
    case 0x0a:
      return 0x03;
    case 0x4a:
      return 0x0b;
    case 0x8a:
      return 0x0b;
    case 0x1a:
      return 0x07;
    case 0x5a:
      return 0x0f;
    case 0x9a:
      return 0x0f;
    case 0x2a:
      return 0x07;
    case 0x6a:
      return 0x0f;
    case 0xaa:
      return 0x0f;
    default:
      // make sure the bitmap area is set to 0 firstly
      ASSERT(0);
      return 0x0f;  // return NULL bitmap for exception
  }
}

/**
C
Cary Xu 已提交
223
 * @brief Merge bitmap from 2 bits to 1 bit, and the memory buffer should be guaranteed by the invoker.
C
Cary Xu 已提交
224 225
 *
 * @param srcBitmap
C
Cary Xu 已提交
226
 * @param nBits
C
Cary Xu 已提交
227 228
 * @param dstBitmap
 */
C
Cary Xu 已提交
229
void tdMergeBitmap(uint8_t *srcBitmap, int32_t nBits, uint8_t *dstBitmap) {
C
Cary Xu 已提交
230
  int32_t i = 0, j = 0;
C
Cary Xu 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
  int32_t nBytes = TD_BITMAP_BYTES(nBits);
  int32_t nStrictBytes = nBits / 4;
  int32_t nPartialBits = nBits - nStrictBytes * 4;

  switch (nPartialBits) {
    case 0:
      // NOTHING TODO
      break;
    case 1: {
      void *lastByte = POINTER_SHIFT(srcBitmap, nStrictBytes);
      *(uint8_t *)lastByte &= 0xC0;
    } break;
    case 2: {
      void *lastByte = POINTER_SHIFT(srcBitmap, nStrictBytes);
      *(uint8_t *)lastByte &= 0xF0;
    } break;
    case 3: {
      void *lastByte = POINTER_SHIFT(srcBitmap, nStrictBytes);
      *(uint8_t *)lastByte &= 0xFC;
    } break;
    default:
      ASSERT(0);
  }
C
Cary Xu 已提交
254

C
Cary Xu 已提交
255
  if (nBytes > 0) {
C
Cary Xu 已提交
256 257 258
    dstBitmap[j] = (tdGetMergedBitmapByte(srcBitmap[i]) << 4);
  }

C
Cary Xu 已提交
259
  while ((++i) < nBytes) {
C
Cary Xu 已提交
260 261 262 263 264 265 266 267 268
    if ((i & 1) == 0) {
      dstBitmap[j] = (tdGetMergedBitmapByte(srcBitmap[i]) << 4);
    } else {
      dstBitmap[j] |= tdGetMergedBitmapByte(srcBitmap[i]);
      ++j;
    }
  }
}

C
Cary Xu 已提交
269
// static void dataColSetNEleNull(SDataCol *pCol, int nEle);
C
Cary Xu 已提交
270 271
static void tdMergeTwoDataCols(SDataCols *target, SDataCols *src1, int *iter1, int limit1, SDataCols *src2, int *iter2,
                               int limit2, int tRows, bool forceSetNull);
C
update  
Cary Xu 已提交
272

C
Cary Xu 已提交
273
static FORCE_INLINE void dataColSetNullAt(SDataCol *pCol, int index, bool setBitmap, int8_t bitmapMode) {
C
update  
Cary Xu 已提交
274 275 276 277 278 279 280 281 282
  if (IS_VAR_DATA_TYPE(pCol->type)) {
    pCol->dataOff[index] = pCol->len;
    char *ptr = POINTER_SHIFT(pCol->pData, pCol->len);
    setVardataNull(ptr, pCol->type);
    pCol->len += varDataTLen(ptr);
  } else {
    setNull(POINTER_SHIFT(pCol->pData, TYPE_BYTES[pCol->type] * index), pCol->type, pCol->bytes);
    pCol->len += TYPE_BYTES[pCol->type];
  }
C
Cary Xu 已提交
283
  if (setBitmap) {
C
Cary Xu 已提交
284
    tdSetBitmapValType(pCol->pBitmap, index, TD_VTYPE_NONE, bitmapMode);
C
update  
Cary Xu 已提交
285 286 287
  }
}

C
Cary Xu 已提交
288 289 290 291 292 293 294 295 296 297 298 299
// static void dataColSetNEleNull(SDataCol *pCol, int nEle) {
//   if (IS_VAR_DATA_TYPE(pCol->type)) {
//     pCol->len = 0;
//     for (int i = 0; i < nEle; i++) {
//       dataColSetNullAt(pCol, i);
//     }
//   } else {
//     setNullN(pCol->pData, pCol->type, pCol->bytes, nEle);
//     pCol->len = TYPE_BYTES[pCol->type] * nEle;
//   }
// }

C
Cary Xu 已提交
300 301 302 303 304 305 306 307 308
/**
 * @brief Set bitmap area by byte preferentially and then by bit.
 *
 * @param pBitmap
 * @param nEle
 * @param valType
 * @param bitmapMode 0 for 2 bits, 1 for 1 bit
 * @return int32_t
 */
C
Cary Xu 已提交
309
int32_t tdSetBitmapValTypeN(void *pBitmap, int16_t nEle, TDRowValT valType, int8_t bitmapMode) {
C
Cary Xu 已提交
310
  TASSERT(valType < TD_VTYPE_MAX);
C
Cary Xu 已提交
311 312
  int32_t nBytes = (bitmapMode == 0 ? nEle / TD_VTYPE_PARTS : nEle / TD_VTYPE_PARTS_I);
  uint8_t vTypeByte = tdVTypeByte[bitmapMode][valType];
K
Kaili Xu 已提交
313
  for (int i = 0; i < nBytes; ++i) {
C
Cary Xu 已提交
314
    *(uint8_t *)pBitmap = vTypeByte;
K
Kaili Xu 已提交
315 316 317
    pBitmap = POINTER_SHIFT(pBitmap, 1);
  }

C
Cary Xu 已提交
318
  int32_t nLeft = nEle - nBytes * (bitmapMode == 0 ? TD_VTYPE_BITS : TD_VTYPE_BITS_I);
K
Kaili Xu 已提交
319
  for (int j = 0; j < nLeft; ++j) {
C
Cary Xu 已提交
320
    tdSetBitmapValType(pBitmap, j, valType, bitmapMode);
K
Kaili Xu 已提交
321
  }
C
Cary Xu 已提交
322
  return TSDB_CODE_SUCCESS;
K
Kaili Xu 已提交
323 324
}

C
Cary Xu 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
bool tdIsBitmapBlkNorm(const void *pBitmap, int32_t numOfBits, int8_t bitmapMode) {
  int32_t nBytes = (bitmapMode == 0 ? numOfBits / TD_VTYPE_PARTS : numOfBits / TD_VTYPE_PARTS_I);
  uint8_t vTypeByte = tdVTypeByte[bitmapMode][TD_VTYPE_NORM];
  for (int i = 0; i < nBytes; ++i) {
    if (*((uint8_t *)pBitmap) != vTypeByte) {
      return false;
    }
    pBitmap = POINTER_SHIFT(pBitmap, 1);
  }

  int32_t nLeft = numOfBits - nBytes * (bitmapMode == 0 ? TD_VTYPE_BITS : TD_VTYPE_BITS_I);

  for (int j = 0; j < nLeft; ++j) {
    uint8_t vType;
    tdGetBitmapValType(pBitmap, j, &vType, bitmapMode);
    if (vType != TD_VTYPE_NORM) {
      return false;
    }
  }
  return true;
}

C
Cary Xu 已提交
347
static FORCE_INLINE void dataColSetNoneAt(SDataCol *pCol, int index, bool setBitmap, int8_t bitmapMode) {
K
Kaili Xu 已提交
348 349 350 351 352 353 354 355 356
  if (IS_VAR_DATA_TYPE(pCol->type)) {
    pCol->dataOff[index] = pCol->len;
    char *ptr = POINTER_SHIFT(pCol->pData, pCol->len);
    setVardataNull(ptr, pCol->type);
    pCol->len += varDataTLen(ptr);
  } else {
    setNull(POINTER_SHIFT(pCol->pData, TYPE_BYTES[pCol->type] * index), pCol->type, pCol->bytes);
    pCol->len += TYPE_BYTES[pCol->type];
  }
C
Cary Xu 已提交
357
  if (setBitmap) {
C
Cary Xu 已提交
358
    tdSetBitmapValType(pCol->pBitmap, index, TD_VTYPE_NONE, bitmapMode);
C
Cary Xu 已提交
359
  }
K
Kaili Xu 已提交
360 361
}

C
Cary Xu 已提交
362
static void dataColSetNEleNone(SDataCol *pCol, int nEle, int8_t bitmapMode) {
K
Kaili Xu 已提交
363 364 365
  if (IS_VAR_DATA_TYPE(pCol->type)) {
    pCol->len = 0;
    for (int i = 0; i < nEle; ++i) {
C
Cary Xu 已提交
366
      dataColSetNoneAt(pCol, i, false, bitmapMode);
K
Kaili Xu 已提交
367 368 369 370 371 372
    }
  } else {
    setNullN(pCol->pData, pCol->type, pCol->bytes, nEle);
    pCol->len = TYPE_BYTES[pCol->type] * nEle;
  }
#ifdef TD_SUPPORT_BITMAP
C
Cary Xu 已提交
373
  tdSetBitmapValTypeN(pCol->pBitmap, nEle, TD_VTYPE_NONE, bitmapMode);
K
Kaili Xu 已提交
374 375 376
#endif
}

H
more  
Hongze Cheng 已提交
377
#if 0
H
more  
Hongze Cheng 已提交
378
void trbSetRowInfo(SRowBuilder *pRB, bool del, uint16_t sver) {
H
Hongze Cheng 已提交
379 380 381
  // TODO
}

H
more  
Hongze Cheng 已提交
382 383
void trbSetRowVersion(SRowBuilder *pRB, uint64_t ver) {
  // TODO
H
Hongze Cheng 已提交
384 385
}

H
more  
Hongze Cheng 已提交
386 387
void trbSetRowTS(SRowBuilder *pRB, TSKEY ts) {
  // TODO
H
Hongze Cheng 已提交
388 389
}

H
more  
Hongze Cheng 已提交
390 391 392
int trbWriteCol(SRowBuilder *pRB, void *pData, col_id_t cid) {
  // TODO
  return 0;
H
more  
Hongze Cheng 已提交
393
}
C
Cary Xu 已提交
394

C
Cary Xu 已提交
395
#endif
C
Cary Xu 已提交
396

C
Cary Xu 已提交
397
STSRow *tdRowDup(STSRow *row) {
wafwerar's avatar
wafwerar 已提交
398
  STSRow *trow = taosMemoryMalloc(TD_ROW_LEN(row));
C
Cary Xu 已提交
399 400
  if (trow == NULL) return NULL;

C
Cary Xu 已提交
401
  tdRowCpy(trow, row);
C
Cary Xu 已提交
402 403 404
  return trow;
}

C
Cary Xu 已提交
405
/**
C
Cary Xu 已提交
406 407 408 409 410 411 412
 * @brief
 *
 * @param pCol
 * @param valType
 * @param val
 * @param numOfRows
 * @param maxPoints
C
Cary Xu 已提交
413
 * @param bitmapMode  default is 0(2 bits), otherwise 1(1 bit)
C
Cary Xu 已提交
414
 * @return int
C
Cary Xu 已提交
415
 */
C
Cary Xu 已提交
416 417
int tdAppendValToDataCol(SDataCol *pCol, TDRowValT valType, const void *val, int numOfRows, int maxPoints,
                         int8_t bitmapMode) {
C
Cary Xu 已提交
418
  TASSERT(pCol != NULL);
C
update  
Cary Xu 已提交
419

C
Cary Xu 已提交
420
  // Assume that the columns not specified during insert/upsert mean None.
K
Kaili Xu 已提交
421 422 423
  if (isAllRowsNone(pCol)) {
    if (tdValIsNone(valType)) {
      // all None value yet, just return
C
update  
Cary Xu 已提交
424 425 426
      return 0;
    }

C
Cary Xu 已提交
427
    if (tdAllocMemForCol(pCol, maxPoints) < 0) return -1;
C
update  
Cary Xu 已提交
428
    if (numOfRows > 0) {
K
Kaili Xu 已提交
429
      // Find the first not None value, fill all previous values as None
C
Cary Xu 已提交
430
      dataColSetNEleNone(pCol, numOfRows, bitmapMode);
C
update  
Cary Xu 已提交
431 432
    }
  }
K
Kaili Xu 已提交
433
  if (!tdValTypeIsNorm(valType)) {
C
Cary Xu 已提交
434 435 436
    // TODO:
    // 1. back compatibility and easy to debug with codes of 2.0 to save NULL values.
    // 2. later on, considering further optimization, don't save Null/None for VarType.
K
Kaili Xu 已提交
437 438
    val = getNullValue(pCol->type);
  }
C
update  
Cary Xu 已提交
439 440 441 442 443 444 445 446 447 448 449 450
  if (IS_VAR_DATA_TYPE(pCol->type)) {
    // set offset
    pCol->dataOff[numOfRows] = pCol->len;
    // Copy data
    memcpy(POINTER_SHIFT(pCol->pData, pCol->len), val, varDataTLen(val));
    // Update the length
    pCol->len += varDataTLen(val);
  } else {
    ASSERT(pCol->len == TYPE_BYTES[pCol->type] * numOfRows);
    memcpy(POINTER_SHIFT(pCol->pData, pCol->len), val, pCol->bytes);
    pCol->len += pCol->bytes;
  }
K
Kaili Xu 已提交
451
#ifdef TD_SUPPORT_BITMAP
C
Cary Xu 已提交
452
  tdSetBitmapValType(pCol->pBitmap, numOfRows, valType, bitmapMode);
K
Kaili Xu 已提交
453
#endif
C
update  
Cary Xu 已提交
454 455 456
  return 0;
}

K
Kaili Xu 已提交
457 458
// internal
static int32_t tdAppendTpRowToDataCol(STSRow *pRow, STSchema *pSchema, SDataCols *pCols) {
C
Cary Xu 已提交
459
  ASSERT(pCols->numOfRows == 0 || dataColsKeyLast(pCols) < TD_ROW_KEY(pRow));
C
Cary Xu 已提交
460

K
Kaili Xu 已提交
461 462 463 464 465
  int   rcol = 1;
  int   dcol = 1;
  void *pBitmap = tdGetBitmapAddrTp(pRow, pSchema->flen);

  SDataCol *pDataCol = &(pCols->cols[0]);
C
Cary Xu 已提交
466 467
  ASSERT(pDataCol->colId == PRIMARYKEY_TIMESTAMP_COL_ID);
  tdAppendValToDataCol(pDataCol, TD_VTYPE_NORM, &pRow->ts, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
C
Cary Xu 已提交
468 469

  while (dcol < pCols->numOfCols) {
K
Kaili Xu 已提交
470
    pDataCol = &(pCols->cols[dcol]);
C
Cary Xu 已提交
471
    if (rcol >= schemaNCols(pSchema)) {
C
Cary Xu 已提交
472
      tdAppendValToDataCol(pDataCol, TD_VTYPE_NULL, NULL, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
K
Kaili Xu 已提交
473
      ++dcol;
C
Cary Xu 已提交
474 475 476 477
      continue;
    }

    STColumn *pRowCol = schemaColAt(pSchema, rcol);
C
update  
Cary Xu 已提交
478
    SCellVal  sVal = {0};
C
Cary Xu 已提交
479
    if (pRowCol->colId == pDataCol->colId) {
K
Kaili Xu 已提交
480 481
      if (tdGetTpRowValOfCol(&sVal, pRow, pBitmap, pRowCol->type, pRowCol->offset - sizeof(TSKEY), rcol - 1) < 0) {
        return terrno;
C
update  
Cary Xu 已提交
482
      }
C
Cary Xu 已提交
483
      tdAppendValToDataCol(pDataCol, sVal.valType, sVal.val, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
K
Kaili Xu 已提交
484 485
      ++dcol;
      ++rcol;
C
Cary Xu 已提交
486
    } else if (pRowCol->colId < pDataCol->colId) {
K
Kaili Xu 已提交
487
      ++rcol;
C
Cary Xu 已提交
488
    } else {
C
Cary Xu 已提交
489
      tdAppendValToDataCol(pDataCol, TD_VTYPE_NULL, NULL, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
K
Kaili Xu 已提交
490
      ++dcol;
C
Cary Xu 已提交
491 492
    }
  }
K
Kaili Xu 已提交
493
  ++pCols->numOfRows;
C
Cary Xu 已提交
494

K
Kaili Xu 已提交
495 496 497
  return TSDB_CODE_SUCCESS;
}
// internal
C
Cary Xu 已提交
498
static int32_t tdAppendKvRowToDataCol(STSRow *pRow, STSchema *pSchema, SDataCols *pCols) {
C
Cary Xu 已提交
499
  ASSERT(pCols->numOfRows == 0 || dataColsKeyLast(pCols) < TD_ROW_KEY(pRow));
C
Cary Xu 已提交
500

C
update  
Cary Xu 已提交
501
  int   rcol = 0;
K
Kaili Xu 已提交
502
  int   dcol = 1;
C
Cary Xu 已提交
503
  int   tRowCols = tdRowGetNCols(pRow) - 1;  // the primary TS key not included in kvRowColIdx part
K
Kaili Xu 已提交
504
  int   tSchemaCols = schemaNCols(pSchema) - 1;
C
Cary Xu 已提交
505
  void *pBitmap = tdGetBitmapAddrKv(pRow, tdRowGetNCols(pRow));
C
Cary Xu 已提交
506

K
Kaili Xu 已提交
507
  SDataCol *pDataCol = &(pCols->cols[0]);
C
Cary Xu 已提交
508 509
  ASSERT(pDataCol->colId == PRIMARYKEY_TIMESTAMP_COL_ID);
  tdAppendValToDataCol(pDataCol, TD_VTYPE_NORM, &pRow->ts, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
K
Kaili Xu 已提交
510

C
Cary Xu 已提交
511
  while (dcol < pCols->numOfCols) {
K
Kaili Xu 已提交
512 513
    pDataCol = &(pCols->cols[dcol]);
    if (rcol >= tRowCols || rcol >= tSchemaCols) {
C
Cary Xu 已提交
514
      tdAppendValToDataCol(pDataCol, TD_VTYPE_NULL, NULL, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
C
Cary Xu 已提交
515 516 517 518
      ++dcol;
      continue;
    }

K
Kaili Xu 已提交
519 520 521
    SKvRowIdx *pIdx = tdKvRowColIdxAt(pRow, rcol);
    int16_t    colIdx = -1;
    if (pIdx) {
C
bug fix  
Cary Xu 已提交
522
      colIdx = POINTER_DISTANCE(pIdx, TD_ROW_COL_IDX(pRow)) / sizeof(SKvRowIdx);
K
Kaili Xu 已提交
523
    }
C
bug fix  
Cary Xu 已提交
524
    TASSERT(colIdx >= 0);
K
Kaili Xu 已提交
525 526
    SCellVal sVal = {0};
    if (pIdx->colId == pDataCol->colId) {
C
Cary Xu 已提交
527
      if (tdGetKvRowValOfCol(&sVal, pRow, pBitmap, pIdx->offset, colIdx) < 0) {
K
Kaili Xu 已提交
528 529
        return terrno;
      }
C
Cary Xu 已提交
530
      tdAppendValToDataCol(pDataCol, sVal.valType, sVal.val, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
C
Cary Xu 已提交
531 532
      ++dcol;
      ++rcol;
K
Kaili Xu 已提交
533
    } else if (pIdx->colId < pDataCol->colId) {
C
Cary Xu 已提交
534 535
      ++rcol;
    } else {
C
Cary Xu 已提交
536
      tdAppendValToDataCol(pDataCol, TD_VTYPE_NULL, NULL, pCols->numOfRows, pCols->maxPoints, pCols->bitmapMode);
C
Cary Xu 已提交
537 538 539
      ++dcol;
    }
  }
K
Kaili Xu 已提交
540 541 542
  ++pCols->numOfRows;

  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
543 544
}

C
update  
Cary Xu 已提交
545
/**
K
Kaili Xu 已提交
546 547 548 549 550 551
 * @brief exposed
 *
 * @param pRow
 * @param pSchema
 * @param pCols
 * @param forceSetNull
C
update  
Cary Xu 已提交
552
 */
C
Cary Xu 已提交
553
int32_t tdAppendSTSRowToDataCol(STSRow *pRow, STSchema *pSchema, SDataCols *pCols) {
C
Cary Xu 已提交
554
  if (TD_IS_TP_ROW(pRow)) {
C
Cary Xu 已提交
555
    return tdAppendTpRowToDataCol(pRow, pSchema, pCols);
C
Cary Xu 已提交
556
  } else if (TD_IS_KV_ROW(pRow)) {
C
Cary Xu 已提交
557
    return tdAppendKvRowToDataCol(pRow, pSchema, pCols);
C
Cary Xu 已提交
558 559 560
  } else {
    ASSERT(0);
  }
C
Cary Xu 已提交
561
  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
562 563
}

C
Cary Xu 已提交
564 565
int tdMergeDataCols(SDataCols *target, SDataCols *source, int rowsToMerge, int *pOffset, bool forceSetNull,
                    TDRowVerT maxVer) {
C
Cary Xu 已提交
566 567 568 569 570 571 572 573 574 575 576 577
  ASSERT(rowsToMerge > 0 && rowsToMerge <= source->numOfRows);
  ASSERT(target->numOfCols == source->numOfCols);
  int offset = 0;

  if (pOffset == NULL) {
    pOffset = &offset;
  }

  SDataCols *pTarget = NULL;

  if ((target->numOfRows == 0) || (dataColsKeyLast(target) < dataColsKeyAtRow(source, *pOffset))) {  // No overlap
    ASSERT(target->numOfRows + rowsToMerge <= target->maxPoints);
C
Cary Xu 已提交
578
    // TODO: filter the maxVer
C
Cary Xu 已提交
579 580 581
    for (int i = 0; i < rowsToMerge; i++) {
      for (int j = 0; j < source->numOfCols; j++) {
        if (source->cols[j].len > 0 || target->cols[j].len > 0) {
C
Cary Xu 已提交
582
          SCellVal sVal = {0};
C
Cary Xu 已提交
583
          if (tdGetColDataOfRow(&sVal, source->cols + j, i + (*pOffset), source->bitmapMode) < 0) {
C
Cary Xu 已提交
584 585
            TASSERT(0);
          }
C
Cary Xu 已提交
586 587
          tdAppendValToDataCol(target->cols + j, sVal.valType, sVal.val, target->numOfRows, target->maxPoints,
                               target->bitmapMode);
C
Cary Xu 已提交
588 589
        }
      }
C
Cary Xu 已提交
590
      ++target->numOfRows;
C
Cary Xu 已提交
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
    }
    (*pOffset) += rowsToMerge;
  } else {
    pTarget = tdDupDataCols(target, true);
    if (pTarget == NULL) goto _err;

    int iter1 = 0;
    tdMergeTwoDataCols(target, pTarget, &iter1, pTarget->numOfRows, source, pOffset, source->numOfRows,
                       pTarget->numOfRows + rowsToMerge, forceSetNull);
  }

  tdFreeDataCols(pTarget);
  return 0;

_err:
  tdFreeDataCols(pTarget);
  return -1;
}

// src2 data has more priority than src1
static void tdMergeTwoDataCols(SDataCols *target, SDataCols *src1, int *iter1, int limit1, SDataCols *src2, int *iter2,
                               int limit2, int tRows, bool forceSetNull) {
  tdResetDataCols(target);
  ASSERT(limit1 <= src1->numOfRows && limit2 <= src2->numOfRows);

  while (target->numOfRows < tRows) {
    if (*iter1 >= limit1 && *iter2 >= limit2) break;

    TSKEY key1 = (*iter1 >= limit1) ? INT64_MAX : dataColsKeyAt(src1, *iter1);
    TKEY  tkey1 = (*iter1 >= limit1) ? TKEY_NULL : dataColsTKeyAt(src1, *iter1);
    TSKEY key2 = (*iter2 >= limit2) ? INT64_MAX : dataColsKeyAt(src2, *iter2);
C
Cary Xu 已提交
622
    // TKEY  tkey2 = (*iter2 >= limit2) ? TKEY_NULL : dataColsTKeyAt(src2, *iter2);
C
Cary Xu 已提交
623 624

    ASSERT(tkey1 == TKEY_NULL || (!TKEY_IS_DELETED(tkey1)));
C
Cary Xu 已提交
625
    // TODO: filter the maxVer
C
Cary Xu 已提交
626
    if (key1 < key2) {
C
Cary Xu 已提交
627
      for (int i = 0; i < src1->numOfCols; ++i) {
C
Cary Xu 已提交
628 629
        ASSERT(target->cols[i].type == src1->cols[i].type);
        if (src1->cols[i].len > 0 || target->cols[i].len > 0) {
C
Cary Xu 已提交
630
          SCellVal sVal = {0};
C
Cary Xu 已提交
631
          if (tdGetColDataOfRow(&sVal, src1->cols + i, *iter1, src1->bitmapMode) < 0) {
C
Cary Xu 已提交
632 633
            TASSERT(0);
          }
C
Cary Xu 已提交
634 635
          tdAppendValToDataCol(&(target->cols[i]), sVal.valType, sVal.val, target->numOfRows, target->maxPoints,
                               target->bitmapMode);
C
Cary Xu 已提交
636 637 638
        }
      }

C
Cary Xu 已提交
639 640
      ++target->numOfRows;
      ++(*iter1);
C
Cary Xu 已提交
641
    } else if (key1 >= key2) {
C
Cary Xu 已提交
642 643 644
      // TODO: filter the maxVer
      if ((key1 > key2) || ((key1 == key2) && !TKEY_IS_DELETED(key2))) {
        for (int i = 0; i < src2->numOfCols; ++i) {
C
Cary Xu 已提交
645
          SCellVal sVal = {0};
C
Cary Xu 已提交
646
          ASSERT(target->cols[i].type == src2->cols[i].type);
C
Cary Xu 已提交
647
          if (tdGetColDataOfRow(&sVal, src2->cols + i, *iter2, src2->bitmapMode) < 0) {
C
Cary Xu 已提交
648 649 650
            TASSERT(0);
          }
          if (src2->cols[i].len > 0 && !tdValTypeIsNull(sVal.valType)) {
C
Cary Xu 已提交
651 652
            tdAppendValToDataCol(&(target->cols[i]), sVal.valType, sVal.val, target->numOfRows, target->maxPoints,
                                 target->bitmapMode);
C
Cary Xu 已提交
653
          } else if (!forceSetNull && key1 == key2 && src1->cols[i].len > 0) {
C
Cary Xu 已提交
654
            if (tdGetColDataOfRow(&sVal, src1->cols + i, *iter1, src1->bitmapMode) < 0) {
C
Cary Xu 已提交
655 656
              TASSERT(0);
            }
C
Cary Xu 已提交
657 658
            tdAppendValToDataCol(&(target->cols[i]), sVal.valType, sVal.val, target->numOfRows, target->maxPoints,
                                 target->bitmapMode);
C
Cary Xu 已提交
659
          } else if (target->cols[i].len > 0) {
C
Cary Xu 已提交
660
            dataColSetNullAt(&target->cols[i], target->numOfRows, true, target->bitmapMode);
C
Cary Xu 已提交
661 662
          }
        }
C
Cary Xu 已提交
663
        ++target->numOfRows;
C
Cary Xu 已提交
664 665
      }

C
Cary Xu 已提交
666 667
      ++(*iter2);
      if (key1 == key2) ++(*iter1);
C
Cary Xu 已提交
668 669 670 671 672 673
    }

    ASSERT(target->numOfRows <= target->maxPoints);
  }
}

C
Cary Xu 已提交
674
STSRow *mergeTwoRows(void *buffer, STSRow *row1, STSRow *row2, STSchema *pSchema1, STSchema *pSchema2) {
C
Cary Xu 已提交
675
#if 0
C
Cary Xu 已提交
676 677 678
  ASSERT(TD_ROW_KEY(row1) == TD_ROW_KEY(row2));
  ASSERT(schemaVersion(pSchema1) == TD_ROW_SVER(row1));
  ASSERT(schemaVersion(pSchema2) == TD_ROW_SVER(row2));
C
Cary Xu 已提交
679 680 681
  ASSERT(schemaVersion(pSchema1) >= schemaVersion(pSchema2));
#endif

C
Cary Xu 已提交
682
#if 0
C
Cary Xu 已提交
683 684 685 686 687
  SArray *stashRow = taosArrayInit(pSchema1->numOfCols, sizeof(SColInfo));
  if (stashRow == NULL) {
    return NULL;
  }

C
Cary Xu 已提交
688 689
  STSRow  pRow = buffer;
  STpRow dataRow = memRowDataBody(pRow);
C
Cary Xu 已提交
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
  memRowSetType(pRow, SMEM_ROW_DATA);
  dataRowSetVersion(dataRow, schemaVersion(pSchema1));  // use latest schema version
  dataRowSetLen(dataRow, (TDRowLenT)(TD_DATA_ROW_HEAD_SIZE + pSchema1->flen));

  TDRowLenT dataLen = 0, kvLen = TD_MEM_ROW_KV_HEAD_SIZE;

  int32_t  i = 0;  // row1
  int32_t  j = 0;  // row2
  int32_t  nCols1 = schemaNCols(pSchema1);
  int32_t  nCols2 = schemaNCols(pSchema2);
  SColInfo colInfo = {0};
  int32_t  kvIdx1 = 0, kvIdx2 = 0;

  while (i < nCols1) {
    STColumn *pCol = schemaColAt(pSchema1, i);
    void *    val1 = tdGetMemRowDataOfColEx(row1, pCol->colId, pCol->type, TD_DATA_ROW_HEAD_SIZE + pCol->offset, &kvIdx1);
    // if val1 != NULL, use val1;
    if (val1 != NULL && !isNull(val1, pCol->type)) {
      tdAppendColVal(dataRow, val1, pCol->type, pCol->offset);
      kvLen += tdGetColAppendLen(SMEM_ROW_KV, val1, pCol->type);
      setSColInfo(&colInfo, pCol->colId, pCol->type, val1);
      taosArrayPush(stashRow, &colInfo);
      ++i;  // next col
      continue;
    }

    void *val2 = NULL;
    while (j < nCols2) {
      STColumn *tCol = schemaColAt(pSchema2, j);
      if (tCol->colId < pCol->colId) {
        ++j;
        continue;
      }
      if (tCol->colId == pCol->colId) {
        val2 = tdGetMemRowDataOfColEx(row2, tCol->colId, tCol->type, TD_DATA_ROW_HEAD_SIZE + tCol->offset, &kvIdx2);
      } else if (tCol->colId > pCol->colId) {
        // set NULL
      }
      break;
    }  // end of while(j<nCols2)
    if (val2 == NULL) {
      val2 = (void *)getNullValue(pCol->type);
    }
    tdAppendColVal(dataRow, val2, pCol->type, pCol->offset);
    if (!isNull(val2, pCol->type)) {
      kvLen += tdGetColAppendLen(SMEM_ROW_KV, val2, pCol->type);
      setSColInfo(&colInfo, pCol->colId, pCol->type, val2);
      taosArrayPush(stashRow, &colInfo);
    }

    ++i;  // next col
  }

C
Cary Xu 已提交
743
  dataLen = TD_ROW_LEN(pRow);
C
Cary Xu 已提交
744 745 746 747

  if (kvLen < dataLen) {
    // scan stashRow and generate SKVRow
    memset(buffer, 0, sizeof(dataLen));
C
Cary Xu 已提交
748
    STSRow tRow = buffer;
C
Cary Xu 已提交
749 750 751 752 753 754 755 756 757 758 759 760 761 762
    memRowSetType(tRow, SMEM_ROW_KV);
    SKVRow kvRow = (SKVRow)memRowKvBody(tRow);
    int16_t nKvNCols = (int16_t) taosArrayGetSize(stashRow);
    kvRowSetLen(kvRow, (TDRowLenT)(TD_KV_ROW_HEAD_SIZE + sizeof(SColIdx) * nKvNCols));
    kvRowSetNCols(kvRow, nKvNCols);
    memRowSetKvVersion(tRow, pSchema1->version);

    int32_t toffset = 0;
    int16_t k;
    for (k = 0; k < nKvNCols; ++k) {
      SColInfo *pColInfo = taosArrayGet(stashRow, k);
      tdAppendKvColVal(kvRow, pColInfo->colVal, true, pColInfo->colId, pColInfo->colType, toffset);
      toffset += sizeof(SColIdx);
    }
C
Cary Xu 已提交
763
    ASSERT(kvLen == TD_ROW_LEN(tRow));
C
Cary Xu 已提交
764 765 766
  }
  taosArrayDestroy(stashRow);
  return buffer;
C
Cary Xu 已提交
767
#endif
C
Cary Xu 已提交
768
  return NULL;
C
Cary Xu 已提交
769
}
C
Cary Xu 已提交
770 771 772 773 774 775

SDataCols *tdDupDataCols(SDataCols *pDataCols, bool keepData) {
  SDataCols *pRet = tdNewDataCols(pDataCols->maxCols, pDataCols->maxPoints);
  if (pRet == NULL) return NULL;

  pRet->numOfCols = pDataCols->numOfCols;
C
Cary Xu 已提交
776
  pRet->bitmapMode = pDataCols->bitmapMode;
C
Cary Xu 已提交
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
  pRet->sversion = pDataCols->sversion;
  if (keepData) pRet->numOfRows = pDataCols->numOfRows;

  for (int i = 0; i < pDataCols->numOfCols; i++) {
    pRet->cols[i].type = pDataCols->cols[i].type;
    pRet->cols[i].bitmap = pDataCols->cols[i].bitmap;
    pRet->cols[i].colId = pDataCols->cols[i].colId;
    pRet->cols[i].bytes = pDataCols->cols[i].bytes;
    pRet->cols[i].offset = pDataCols->cols[i].offset;

    if (keepData) {
      if (pDataCols->cols[i].len > 0) {
        if (tdAllocMemForCol(&pRet->cols[i], pRet->maxPoints) < 0) {
          tdFreeDataCols(pRet);
          return NULL;
        }
        pRet->cols[i].len = pDataCols->cols[i].len;
        memcpy(pRet->cols[i].pData, pDataCols->cols[i].pData, pDataCols->cols[i].len);
        if (IS_VAR_DATA_TYPE(pRet->cols[i].type)) {
          int dataOffSize = sizeof(VarDataOffsetT) * pDataCols->maxPoints;
          memcpy(pRet->cols[i].dataOff, pDataCols->cols[i].dataOff, dataOffSize);
        }
        if (!TD_COL_ROWS_NORM(pRet->cols + i)) {
800
          int32_t nBitmapBytes = (int32_t)TD_BITMAP_BYTES(pDataCols->numOfRows);
C
Cary Xu 已提交
801 802 803 804 805 806 807 808
          memcpy(pRet->cols[i].pBitmap, pDataCols->cols[i].pBitmap, nBitmapBytes);
        }
      }
    }
  }

  return pRet;
}