sclvector.c 70.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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 "os.h"

H
Haojun Liao 已提交
18
#include "filter.h"
D
dapan1121 已提交
19
#include "filterInt.h"
D
dapan1121 已提交
20
#include "query.h"
H
Haojun Liao 已提交
21
#include "querynodes.h"
D
dapan1121 已提交
22
#include "sclInt.h"
H
Haojun Liao 已提交
23 24 25
#include "sclvector.h"
#include "tcompare.h"
#include "tdatablock.h"
wmmhello's avatar
wmmhello 已提交
26
#include "tdataformat.h"
H
Haojun Liao 已提交
27
#include "ttypes.h"
D
dapan1121 已提交
28
#include "ttime.h"
29

30 31 32
#define LEFT_COL ((pLeftCol->info.type == TSDB_DATA_TYPE_JSON ? (void*)pLeftCol : pLeftCol->pData))
#define RIGHT_COL ((pRightCol->info.type == TSDB_DATA_TYPE_JSON ? (void*)pRightCol : pRightCol->pData))

wmmhello's avatar
wmmhello 已提交
33 34 35 36 37 38
#define IS_NULL colDataIsNull_s(pLeft->columnData, i) || colDataIsNull_s(pRight->columnData, i) \
    || IS_JSON_NULL(pLeft->columnData->info.type, colDataGetVarData(pLeft->columnData, i)) \
    || IS_JSON_NULL(pRight->columnData->info.type, colDataGetVarData(pRight->columnData, i))

#define IS_HELPER_NULL(col,i) colDataIsNull_s(col, i) || IS_JSON_NULL(col->info.type, colDataGetVarData(col, i))

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
void convertNumberToNumber(const void *inData, void *outData, int8_t inType, int8_t outType){
  switch (outType) {
    case TSDB_DATA_TYPE_BOOL: {
      GET_TYPED_DATA(*((bool *)outData), bool, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_TINYINT: {
      GET_TYPED_DATA(*((int8_t *)outData), int8_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_SMALLINT: {
      GET_TYPED_DATA(*((int16_t *)outData), int16_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_INT: {
      GET_TYPED_DATA(*((int32_t *)outData), int32_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_BIGINT:
    case TSDB_DATA_TYPE_TIMESTAMP: {
      GET_TYPED_DATA(*((int64_t *)outData), int64_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_UTINYINT: {
      GET_TYPED_DATA(*((uint8_t *)outData), uint8_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_USMALLINT: {
      GET_TYPED_DATA(*((uint16_t *)outData), uint16_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_UINT: {
      GET_TYPED_DATA(*((uint32_t *)outData), uint32_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_UBIGINT: {
      GET_TYPED_DATA(*((uint64_t *)outData), uint64_t, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_FLOAT: {
      GET_TYPED_DATA(*((float *)outData), float, inType, inData);
      break;
    }
    case TSDB_DATA_TYPE_DOUBLE: {
      GET_TYPED_DATA(*((double *)outData), double, inType, inData);
      break;
    }
    default:{
      ASSERT(0);
    }
  }
}

92
void convertNcharToDouble(const void *inData, void *outData){
93 94 95 96 97 98 99 100
  char *tmp = taosMemoryMalloc(varDataTLen(inData));
  int len = taosUcs4ToMbs((TdUcs4 *)varDataVal(inData), varDataLen(inData), tmp);
  if (len < 0) {
    sclError("castConvert taosUcs4ToMbs error 1");
  }

  tmp[len] = 0;

wafwerar's avatar
wafwerar 已提交
101
  double value = taosStr2Double(tmp, NULL);
102 103 104 105 106

  *((double *)outData) = value;
  taosMemoryFreeClear(tmp);
}

107 108 109 110 111 112 113 114 115 116 117 118
void convertBinaryToDouble(const void *inData, void *outData){
  char *tmp = taosMemoryCalloc(1, varDataTLen(inData));
  if(tmp == NULL){
    *((double *)outData) = 0.;
    return;
  }
  memcpy(tmp, varDataVal(inData), varDataLen(inData));
  double ret = taosStr2Double(tmp, NULL);
  taosMemoryFree(tmp);
  *((double *)outData) = ret;
}

D
dapan1121 已提交
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
typedef int64_t (*_getBigintValue_fn_t)(void *src, int32_t index);

int64_t getVectorBigintValue_TINYINT(void *src, int32_t index) {
  return (int64_t)*((int8_t *)src + index);
}
int64_t getVectorBigintValue_UTINYINT(void *src, int32_t index) {
  return (int64_t)*((uint8_t *)src + index);
}
int64_t getVectorBigintValue_SMALLINT(void *src, int32_t index) {
  return (int64_t)*((int16_t *)src + index);
}
int64_t getVectorBigintValue_USMALLINT(void *src, int32_t index) {
  return (int64_t)*((uint16_t *)src + index);
}
int64_t getVectorBigintValue_INT(void *src, int32_t index) {
  return (int64_t)*((int32_t *)src + index);
}
int64_t getVectorBigintValue_UINT(void *src, int32_t index) {
  return (int64_t)*((uint32_t *)src + index);
}
int64_t getVectorBigintValue_BIGINT(void *src, int32_t index) {
  return (int64_t)*((int64_t *)src + index);
}
int64_t getVectorBigintValue_UBIGINT(void *src, int32_t index) {
  return (int64_t)*((uint64_t *)src + index);
}
int64_t getVectorBigintValue_FLOAT(void *src, int32_t index) {
  return (int64_t)*((float *)src + index);
}
int64_t getVectorBigintValue_DOUBLE(void *src, int32_t index) {
  return (int64_t)*((double *)src + index);
}
151 152 153 154
int64_t getVectorBigintValue_BOOL(void *src, int32_t index) {
  return (int64_t)*((bool *)src + index);
}

155 156 157 158 159 160 161
int64_t getVectorBigintValue_JSON(void *src, int32_t index){
  ASSERT(!colDataIsNull_var(((SColumnInfoData*)src), index));
  char *data = colDataGetVarData((SColumnInfoData*)src, index);
  double out = 0;
  if (*data == TSDB_DATA_TYPE_NULL){
    return 0;
  } else if(*data == TSDB_DATA_TYPE_NCHAR) {   // json inner type can not be BINARY
162
    convertNcharToDouble(data+CHAR_BYTES, &out);
wmmhello's avatar
wmmhello 已提交
163 164 165
  } else if(tTagIsJson(data)){
    terrno = TSDB_CODE_QRY_JSON_NOT_SUPPORT_ERROR;
    return 0;
166 167 168 169 170 171
  } else {
    convertNumberToNumber(data+CHAR_BYTES, &out, *data, TSDB_DATA_TYPE_DOUBLE);
  }
  return (int64_t)out;
}

D
dapan1121 已提交
172 173
_getBigintValue_fn_t getVectorBigintValueFn(int32_t srcType) {
    _getBigintValue_fn_t p = NULL;
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
    if (srcType==TSDB_DATA_TYPE_TINYINT) {
      p = getVectorBigintValue_TINYINT;
    } else if (srcType==TSDB_DATA_TYPE_UTINYINT) {
      p = getVectorBigintValue_UTINYINT;
    } else if (srcType==TSDB_DATA_TYPE_SMALLINT) {
      p = getVectorBigintValue_SMALLINT;
    } else if (srcType==TSDB_DATA_TYPE_USMALLINT) {
      p = getVectorBigintValue_USMALLINT;
    } else if (srcType==TSDB_DATA_TYPE_INT) {
      p = getVectorBigintValue_INT;
    } else if (srcType==TSDB_DATA_TYPE_UINT) {
      p = getVectorBigintValue_UINT;
    } else if (srcType==TSDB_DATA_TYPE_BIGINT) {
      p = getVectorBigintValue_BIGINT;
    } else if (srcType==TSDB_DATA_TYPE_UBIGINT) {
      p = getVectorBigintValue_UBIGINT;
    } else if (srcType==TSDB_DATA_TYPE_FLOAT) {
      p = getVectorBigintValue_FLOAT;
    } else if (srcType==TSDB_DATA_TYPE_DOUBLE) {
      p = getVectorBigintValue_DOUBLE;
    } else if (srcType==TSDB_DATA_TYPE_TIMESTAMP) {
      p = getVectorBigintValue_BIGINT;
    } else if (srcType==TSDB_DATA_TYPE_BOOL) {
      p = getVectorBigintValue_BOOL;
    } else if (srcType==TSDB_DATA_TYPE_JSON) {
      p = getVectorBigintValue_JSON;
    } else if (srcType==TSDB_DATA_TYPE_NULL){
      p = NULL;
    } else {
203
      ASSERT(0);
D
dapan1121 已提交
204 205 206 207
    }
    return p;
}

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
typedef void* (*_getValueAddr_fn_t)(void *src, int32_t index);

void* getVectorValueAddr_TINYINT(void *src, int32_t index) {
  return (void*)((int8_t *)src + index);
}
void* getVectorValueAddr_UTINYINT(void *src, int32_t index) {
  return (void*)((uint8_t *)src + index);
}
void* getVectorValueAddr_SMALLINT(void *src, int32_t index) {
  return (void*)((int16_t *)src + index);
}
void* getVectorValueAddr_USMALLINT(void *src, int32_t index) {
  return (void*)((uint16_t *)src + index);
}
void* getVectorValueAddr_INT(void *src, int32_t index) {
  return (void*)((int32_t *)src + index);
}
void* getVectorValueAddr_UINT(void *src, int32_t index) {
  return (void*)((uint32_t *)src + index);
}
void* getVectorValueAddr_BIGINT(void *src, int32_t index) {
  return (void*)((int64_t *)src + index);
}
void* getVectorValueAddr_UBIGINT(void *src, int32_t index) {
  return (void*)((uint64_t *)src + index);
}
void* getVectorValueAddr_FLOAT(void *src, int32_t index) {
  return (void*)((float *)src + index);
}
void* getVectorValueAddr_DOUBLE(void *src, int32_t index) {
  return (void*)((double *)src + index);
}
D
dapan1121 已提交
240 241 242 243
void* getVectorValueAddr_default(void *src, int32_t index) {
  return src;
}
void* getVectorValueAddr_VAR(void *src, int32_t index) {
H
Haojun Liao 已提交
244
  return colDataGetData((SColumnInfoData *)src, index);
D
dapan1121 已提交
245
}
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268

_getValueAddr_fn_t getVectorValueAddrFn(int32_t srcType) {
    _getValueAddr_fn_t p = NULL;
    if(srcType==TSDB_DATA_TYPE_TINYINT) {
        p = getVectorValueAddr_TINYINT;
    }else if(srcType==TSDB_DATA_TYPE_UTINYINT) {
        p = getVectorValueAddr_UTINYINT;
    }else if(srcType==TSDB_DATA_TYPE_SMALLINT) {
        p = getVectorValueAddr_SMALLINT;
    }else if(srcType==TSDB_DATA_TYPE_USMALLINT) {
        p = getVectorValueAddr_USMALLINT;
    }else if(srcType==TSDB_DATA_TYPE_INT) {
        p = getVectorValueAddr_INT;
    }else if(srcType==TSDB_DATA_TYPE_UINT) {
        p = getVectorValueAddr_UINT;
    }else if(srcType==TSDB_DATA_TYPE_BIGINT) {
        p = getVectorValueAddr_BIGINT;
    }else if(srcType==TSDB_DATA_TYPE_UBIGINT) {
        p = getVectorValueAddr_UBIGINT;
    }else if(srcType==TSDB_DATA_TYPE_FLOAT) {
        p = getVectorValueAddr_FLOAT;
    }else if(srcType==TSDB_DATA_TYPE_DOUBLE) {
        p = getVectorValueAddr_DOUBLE;
D
dapan1121 已提交
269 270 271 272
    }else if(srcType==TSDB_DATA_TYPE_BINARY) {
        p = getVectorValueAddr_VAR;
    }else if(srcType==TSDB_DATA_TYPE_NCHAR) {
        p = getVectorValueAddr_VAR;
273
    }else {
D
dapan1121 已提交
274
        p = getVectorValueAddr_default;
275 276 277 278
    }
    return p;
}

D
dapan1121 已提交
279
static FORCE_INLINE void varToTimestamp(char *buf, SScalarParam* pOut, int32_t rowIndex, int32_t* overflow) {
D
dapan1121 已提交
280 281 282 283 284 285 286 287
  int64_t value = 0;
  if (taosParseTime(buf, &value, strlen(buf), pOut->columnData->info.precision, tsDaylight) != TSDB_CODE_SUCCESS) {
    value = 0;
  }
  
  colDataAppendInt64(pOut->columnData, rowIndex, &value);
}

D
dapan1121 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
static FORCE_INLINE void varToSigned(char *buf, SScalarParam* pOut, int32_t rowIndex, int32_t* overflow) {
  if (overflow) {
    int64_t minValue = tDataTypes[pOut->columnData->info.type].minValue;
    int64_t maxValue = tDataTypes[pOut->columnData->info.type].maxValue;
    int64_t value = (int64_t)taosStr2Int64(buf, NULL, 10);
    if (value > maxValue) {
      *overflow = 1;
      return;
    } else if (value < minValue) {
      *overflow = -1;
      return;
    } else {
      *overflow = 0;
    }
  }
      
D
fix bug  
dapan1121 已提交
304 305
  switch (pOut->columnData->info.type) {
    case TSDB_DATA_TYPE_TINYINT: {
wafwerar's avatar
wafwerar 已提交
306
      int8_t value = (int8_t)taosStr2Int8(buf, NULL, 10);
D
dapan1121 已提交
307
     
D
fix bug  
dapan1121 已提交
308 309 310 311
      colDataAppendInt8(pOut->columnData, rowIndex, (int8_t*)&value);
      break;
    } 
    case TSDB_DATA_TYPE_SMALLINT: {
wafwerar's avatar
wafwerar 已提交
312
      int16_t value = (int16_t)taosStr2Int16(buf, NULL, 10);
D
fix bug  
dapan1121 已提交
313 314 315 316
      colDataAppendInt16(pOut->columnData, rowIndex, (int16_t*)&value);
      break;
    } 
    case TSDB_DATA_TYPE_INT: {
wafwerar's avatar
wafwerar 已提交
317
      int32_t value = (int32_t)taosStr2Int32(buf, NULL, 10);
D
fix bug  
dapan1121 已提交
318 319 320 321
      colDataAppendInt32(pOut->columnData, rowIndex, (int32_t*)&value);
      break;
    } 
    case TSDB_DATA_TYPE_BIGINT: {
wafwerar's avatar
wafwerar 已提交
322
      int64_t value = (int64_t)taosStr2Int64(buf, NULL, 10);
D
fix bug  
dapan1121 已提交
323 324 325 326
      colDataAppendInt64(pOut->columnData, rowIndex, (int64_t*)&value);
      break;
    }   
  }
D
dapan1121 已提交
327 328
}

D
dapan1121 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
static FORCE_INLINE void varToUnsigned(char *buf, SScalarParam* pOut, int32_t rowIndex, int32_t* overflow) {
  if (overflow) {
    uint64_t minValue = (uint64_t)tDataTypes[pOut->columnData->info.type].minValue;
    uint64_t maxValue = (uint64_t)tDataTypes[pOut->columnData->info.type].maxValue;
    uint64_t value = (uint64_t)taosStr2UInt64(buf, NULL, 10);
    if (value > maxValue) {
      *overflow = 1;
      return;
    } else if (value < minValue) {
      *overflow = -1;
      return;
    } else {
      *overflow = 0;
    }
  }

D
fix bug  
dapan1121 已提交
345 346
  switch (pOut->columnData->info.type) {
    case TSDB_DATA_TYPE_UTINYINT: {
wafwerar's avatar
wafwerar 已提交
347
      uint8_t value = (uint8_t)taosStr2UInt8(buf, NULL, 10);
D
fix bug  
dapan1121 已提交
348 349 350 351
      colDataAppendInt8(pOut->columnData, rowIndex, (int8_t*)&value);
      break;
    } 
    case TSDB_DATA_TYPE_USMALLINT: {
wafwerar's avatar
wafwerar 已提交
352
      uint16_t value = (uint16_t)taosStr2UInt16(buf, NULL, 10);
D
fix bug  
dapan1121 已提交
353 354 355 356
      colDataAppendInt16(pOut->columnData, rowIndex, (int16_t*)&value);
      break;
    } 
    case TSDB_DATA_TYPE_UINT: {
wafwerar's avatar
wafwerar 已提交
357
      uint32_t value = (uint32_t)taosStr2UInt32(buf, NULL, 10);
D
fix bug  
dapan1121 已提交
358 359 360 361
      colDataAppendInt32(pOut->columnData, rowIndex, (int32_t*)&value);
      break;
    } 
    case TSDB_DATA_TYPE_UBIGINT: {
wafwerar's avatar
wafwerar 已提交
362
      uint64_t value = (uint64_t)taosStr2UInt64(buf, NULL, 10);
D
fix bug  
dapan1121 已提交
363 364 365 366
      colDataAppendInt64(pOut->columnData, rowIndex, (int64_t*)&value);
      break;
    }   
  }
D
dapan1121 已提交
367 368
}

D
dapan1121 已提交
369 370 371 372 373 374 375
static FORCE_INLINE void varToFloat(char *buf, SScalarParam* pOut, int32_t rowIndex, int32_t* overflow) {
  if (TSDB_DATA_TYPE_FLOAT == pOut->columnData->info.type) {
    float value = taosStr2Float(buf, NULL);
    colDataAppendFloat(pOut->columnData, rowIndex, &value);
    return;
  }
  
wafwerar's avatar
wafwerar 已提交
376
  double value = taosStr2Double(buf, NULL);
377
  colDataAppendDouble(pOut->columnData, rowIndex, &value);
378 379
}

D
dapan1121 已提交
380
static FORCE_INLINE void varToBool(char *buf, SScalarParam* pOut, int32_t rowIndex, int32_t* overflow) {
wafwerar's avatar
wafwerar 已提交
381
  int64_t value = taosStr2Int64(buf, NULL, 10);
382
  bool v = (value != 0)? true:false;
383
  colDataAppendInt8(pOut->columnData, rowIndex, (int8_t*) &v);
D
dapan1121 已提交
384 385
}

D
dapan1121 已提交
386
static FORCE_INLINE void varToNchar(char* buf, SScalarParam* pOut, int32_t rowIndex, int32_t* overflow) {
wmmhello's avatar
wmmhello 已提交
387 388
  int32_t len = 0;
  int32_t inputLen = varDataLen(buf);
D
fix bug  
dapan1121 已提交
389
  int32_t outputMaxLen = (inputLen + 1) * TSDB_NCHAR_SIZE + VARSTR_HEADER_SIZE;
wmmhello's avatar
wmmhello 已提交
390

D
fix bug  
dapan1121 已提交
391
  char* t = taosMemoryCalloc(1, outputMaxLen);
wafwerar's avatar
wafwerar 已提交
392
  /*int32_t resLen = */taosMbsToUcs4(varDataVal(buf), inputLen, (TdUcs4*) varDataVal(t), outputMaxLen - VARSTR_HEADER_SIZE, &len);
wmmhello's avatar
wmmhello 已提交
393 394 395 396 397
  varDataSetLen(t, len);

  colDataAppend(pOut->columnData, rowIndex, t, false);
  taosMemoryFree(t);
}
398

D
dapan1121 已提交
399
static FORCE_INLINE void ncharToVar(char* buf, SScalarParam* pOut, int32_t rowIndex, int32_t* overflow) {
D
dapan1121 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
  int32_t inputLen = varDataLen(buf);

  char* t = taosMemoryCalloc(1, inputLen + VARSTR_HEADER_SIZE);
  int32_t len  = taosUcs4ToMbs((TdUcs4 *)varDataVal(buf), varDataLen(buf), varDataVal(t));
  if (len < 0) {
    taosMemoryFree(t);
    return;
  }
  varDataSetLen(t, len);

  colDataAppend(pOut->columnData, rowIndex, t, false);
  taosMemoryFree(t);
}


415
//TODO opt performance, tmp is not needed.
D
dapan1121 已提交
416
int32_t vectorConvertFromVarData(SSclVectorConvCtx *pCtx, int32_t* overflow) {
wmmhello's avatar
wmmhello 已提交
417
  bool vton = false;
418 419

  _bufConverteFunc func = NULL;
D
dapan1121 已提交
420
  if (TSDB_DATA_TYPE_BOOL == pCtx->outType) {
421
    func = varToBool;
D
dapan1121 已提交
422
  } else if (IS_SIGNED_NUMERIC_TYPE(pCtx->outType)) {
423
    func = varToSigned;
D
dapan1121 已提交
424
  } else if (IS_UNSIGNED_NUMERIC_TYPE(pCtx->outType)) {
425
    func = varToUnsigned;
D
dapan1121 已提交
426
  } else if (IS_FLOAT_TYPE(pCtx->outType)) {
427
    func = varToFloat;
D
dapan1121 已提交
428 429
  } else if (pCtx->outType == TSDB_DATA_TYPE_BINARY) {   // nchar -> binary
    ASSERT(pCtx->inType == TSDB_DATA_TYPE_NCHAR);
D
dapan1121 已提交
430 431
    func = ncharToVar;
    vton = true;
D
dapan1121 已提交
432 433
  } else if (pCtx->outType == TSDB_DATA_TYPE_NCHAR) {   // binary -> nchar
    ASSERT(pCtx->inType == TSDB_DATA_TYPE_VARCHAR);
wmmhello's avatar
wmmhello 已提交
434 435
    func = varToNchar;
    vton = true;
D
dapan1121 已提交
436
  } else if (TSDB_DATA_TYPE_TIMESTAMP == pCtx->outType) {
D
dapan1121 已提交
437
    func = varToTimestamp;
438
  } else {
D
dapan1121 已提交
439
    sclError("invalid convert outType:%d", pCtx->outType);
440 441 442
    return TSDB_CODE_QRY_APP_ERROR;
  }

D
dapan1121 已提交
443 444 445 446
  pCtx->pOut->numOfRows = pCtx->pIn->numOfRows;
  for (int32_t i = pCtx->startIndex; i <= pCtx->endIndex; ++i) {
    if (IS_HELPER_NULL(pCtx->pIn->columnData, i)) {
      colDataAppendNULL(pCtx->pOut->columnData, i);
447 448 449
      continue;
    }

D
dapan1121 已提交
450 451 452
    char* data = colDataGetVarData(pCtx->pIn->columnData, i);
    int32_t convertType = pCtx->inType;
    if(pCtx->inType == TSDB_DATA_TYPE_JSON){
453
      if(*data == TSDB_DATA_TYPE_NULL) {
wmmhello's avatar
wmmhello 已提交
454
        ASSERT(0);
D
dapan1121 已提交
455
      } else if(*data == TSDB_DATA_TYPE_NCHAR) {
456 457
        data += CHAR_BYTES;
        convertType = TSDB_DATA_TYPE_NCHAR;
wmmhello's avatar
wmmhello 已提交
458 459 460
      } else if(tTagIsJson(data)){
        terrno = TSDB_CODE_QRY_JSON_NOT_SUPPORT_ERROR;
        return terrno;
461
      } else {
D
dapan1121 已提交
462
        convertNumberToNumber(data+CHAR_BYTES, colDataGetNumData(pCtx->pOut->columnData, i), *data, pCtx->outType);
463 464 465
        continue;
      }
    }
D
dapan1121 已提交
466
    int32_t bufSize = pCtx->pIn->columnData->info.bytes;
467 468 469 470 471
    char *tmp = taosMemoryMalloc(varDataTLen(data));
    if(!tmp){
      sclError("out of memory in vectorConvertFromVarData");
      return TSDB_CODE_OUT_OF_MEMORY;
    }
wmmhello's avatar
wmmhello 已提交
472 473 474
    if (vton) {
      memcpy(tmp, data, varDataTLen(data));
    } else {
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
      if (TSDB_DATA_TYPE_VARCHAR == convertType) {
        memcpy(tmp, varDataVal(data), varDataLen(data));
        tmp[varDataLen(data)] = 0;
      } else if (TSDB_DATA_TYPE_NCHAR == convertType){
        ASSERT(varDataLen(data) <= bufSize);

        int len = taosUcs4ToMbs((TdUcs4 *)varDataVal(data), varDataLen(data), tmp);
        if (len < 0) {
          sclError("castConvert taosUcs4ToMbs error 1");
          taosMemoryFreeClear(tmp);
          return TSDB_CODE_QRY_APP_ERROR;
        }

        tmp[len] = 0;
      }
wmmhello's avatar
wmmhello 已提交
490
    }
491
    
D
dapan1121 已提交
492
    (*func)(tmp, pCtx->pOut, i, overflow);
493
    taosMemoryFreeClear(tmp);
494 495 496 497 498
  }
  
  return TSDB_CODE_SUCCESS;
}

499
double getVectorDoubleValue_JSON(void *src, int32_t index){
500
  char *data = colDataGetVarData((SColumnInfoData*)src, index);
501
  double out = 0;
502 503 504
  if (*data == TSDB_DATA_TYPE_NULL){
    return out;
  } else if(*data == TSDB_DATA_TYPE_NCHAR) {   // json inner type can not be BINARY
505
    convertNcharToDouble(data+CHAR_BYTES, &out);
wmmhello's avatar
wmmhello 已提交
506 507 508 509
  } else if(tTagIsJson(data)){
    terrno = TSDB_CODE_QRY_JSON_NOT_SUPPORT_ERROR;
    return 0;
  } else{
510 511 512 513 514
    convertNumberToNumber(data+CHAR_BYTES, &out, *data, TSDB_DATA_TYPE_DOUBLE);
  }
  return out;
}

515
void* ncharTobinary(void *buf){            // todo need to remove , if tobinary is nchar
wmmhello's avatar
wmmhello 已提交
516
  int32_t inputLen = varDataTLen(buf);
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531

  void* t = taosMemoryCalloc(1, inputLen);
  int32_t len  = taosUcs4ToMbs((TdUcs4 *)varDataVal(buf), varDataLen(buf), varDataVal(t));
  if (len < 0) {
    sclError("charset:%s to %s. val:%s convert ncharTobinary failed.", DEFAULT_UNICODE_ENCODEC, tsCharset,
             (char*)varDataVal(buf));
    taosMemoryFree(t);
    return NULL;
  }
  varDataSetLen(t, len);
  return t;
}

bool convertJsonValue(__compar_fn_t *fp, int32_t optr, int8_t typeLeft, int8_t typeRight, char **pLeftData, char **pRightData,
                      void *pLeftOut, void *pRightOut, bool *isNull, bool *freeLeft, bool *freeRight){
532
  if(optr == OP_TYPE_JSON_CONTAINS) {
wmmhello's avatar
wmmhello 已提交
533
    return true;
534 535 536
  }

  if(typeLeft != TSDB_DATA_TYPE_JSON && typeRight != TSDB_DATA_TYPE_JSON){
wmmhello's avatar
wmmhello 已提交
537
    return true;
538 539 540
  }

  if(typeLeft == TSDB_DATA_TYPE_JSON){
wmmhello's avatar
wmmhello 已提交
541 542 543 544
    if(tTagIsJson(*pLeftData)){
      terrno = TSDB_CODE_QRY_JSON_NOT_SUPPORT_ERROR;
      return false;
    }
545 546 547 548
    typeLeft = **pLeftData;
    (*pLeftData) ++;
  }
  if(typeRight == TSDB_DATA_TYPE_JSON){
wmmhello's avatar
wmmhello 已提交
549 550 551 552
    if(tTagIsJson(*pLeftData)){
      terrno = TSDB_CODE_QRY_JSON_NOT_SUPPORT_ERROR;
      return false;
    }
553 554 555
    typeRight = **pRightData;
    (*pRightData) ++;
  }
wmmhello's avatar
wmmhello 已提交
556 557 558 559 560 561 562

  if(optr == OP_TYPE_LIKE || optr == OP_TYPE_NOT_LIKE || optr == OP_TYPE_MATCH || optr == OP_TYPE_NMATCH){
    if(typeLeft != TSDB_DATA_TYPE_NCHAR && typeLeft != TSDB_DATA_TYPE_BINARY){
      return false;
    }
  }

wmmhello's avatar
wmmhello 已提交
563 564 565 566 567 568 569 570 571 572
  // if types can not comparable
  if((IS_NUMERIC_TYPE(typeLeft) && !IS_NUMERIC_TYPE(typeRight)) ||
     (IS_NUMERIC_TYPE(typeRight) && !IS_NUMERIC_TYPE(typeLeft)) ||
     (IS_VAR_DATA_TYPE(typeLeft) && !IS_VAR_DATA_TYPE(typeRight)) ||
     (IS_VAR_DATA_TYPE(typeRight) && !IS_VAR_DATA_TYPE(typeLeft)) ||
     ((typeLeft == TSDB_DATA_TYPE_BOOL) && (typeRight != TSDB_DATA_TYPE_BOOL)) ||
     ((typeRight == TSDB_DATA_TYPE_BOOL) && (typeLeft != TSDB_DATA_TYPE_BOOL)))
    return false;


573 574
  if(typeLeft == TSDB_DATA_TYPE_NULL || typeRight == TSDB_DATA_TYPE_NULL){
    *isNull = true;
wmmhello's avatar
wmmhello 已提交
575
    return true;
576
  }
577 578 579 580
  int8_t type = vectorGetConvertType(typeLeft, typeRight);

  if(type == 0) {
    *fp = filterGetCompFunc(typeLeft, optr);
wmmhello's avatar
wmmhello 已提交
581
    return true;
582 583 584 585
  }

  *fp = filterGetCompFunc(type, optr);

wmmhello's avatar
wmmhello 已提交
586
  if(IS_NUMERIC_TYPE(type)){
587
    if(typeLeft == TSDB_DATA_TYPE_NCHAR) {
wmmhello's avatar
wmmhello 已提交
588 589 590
      ASSERT(0);
//      convertNcharToDouble(*pLeftData, pLeftOut);
//      *pLeftData = pLeftOut;
591
    } else if(typeLeft == TSDB_DATA_TYPE_BINARY) {
wmmhello's avatar
wmmhello 已提交
592 593 594
      ASSERT(0);
//      convertBinaryToDouble(*pLeftData, pLeftOut);
//      *pLeftData = pLeftOut;
595 596 597 598 599 600
    } else if(typeLeft != type) {
      convertNumberToNumber(*pLeftData, pLeftOut, typeLeft, type);
      *pLeftData = pLeftOut;
    }

    if(typeRight == TSDB_DATA_TYPE_NCHAR) {
wmmhello's avatar
wmmhello 已提交
601 602 603
      ASSERT(0);
//      convertNcharToDouble(*pRightData, pRightOut);
//      *pRightData = pRightOut;
604
    } else if(typeRight == TSDB_DATA_TYPE_BINARY) {
wmmhello's avatar
wmmhello 已提交
605 606 607
      ASSERT(0);
//      convertBinaryToDouble(*pRightData, pRightOut);
//      *pRightData = pRightOut;
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
    } else if(typeRight != type) {
      convertNumberToNumber(*pRightData, pRightOut, typeRight, type);
      *pRightData = pRightOut;
    }
  }else if(type == TSDB_DATA_TYPE_BINARY){
    if(typeLeft == TSDB_DATA_TYPE_NCHAR){
      *pLeftData = ncharTobinary(*pLeftData);
      *freeLeft = true;
    }
    if(typeRight == TSDB_DATA_TYPE_NCHAR){
      *pRightData = ncharTobinary(*pRightData);
      *freeRight = true;
    }
  }else{
    ASSERT(0);
623 624
  }

wmmhello's avatar
wmmhello 已提交
625
  return true;
626 627
}

D
dapan1121 已提交
628 629 630
int32_t vectorConvertToVarData(SSclVectorConvCtx *pCtx) {
  SColumnInfoData* pInputCol  = pCtx->pIn->columnData;
  SColumnInfoData* pOutputCol = pCtx->pOut->columnData;
D
fix bug  
dapan1121 已提交
631 632
  char tmp[128] = {0};

D
dapan1121 已提交
633 634
  if (IS_SIGNED_NUMERIC_TYPE(pCtx->inType) || pCtx->inType == TSDB_DATA_TYPE_BOOL || pCtx->inType == TSDB_DATA_TYPE_TIMESTAMP) {
    for (int32_t i = pCtx->startIndex; i <= pCtx->endIndex; ++i) {
D
fix bug  
dapan1121 已提交
635 636 637 638 639 640
      if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
        colDataAppendNULL(pOutputCol, i);
        continue;
      }
      
      int64_t value = 0;
D
dapan1121 已提交
641
      GET_TYPED_DATA(value, int64_t, pCtx->inType, colDataGetData(pInputCol, i));
D
fix bug  
dapan1121 已提交
642 643
      int32_t len = sprintf(varDataVal(tmp), "%" PRId64, value);
      varDataLen(tmp) = len;
D
dapan1121 已提交
644 645
      if (pCtx->outType == TSDB_DATA_TYPE_NCHAR) {
        varToNchar(tmp, pCtx->pOut, i, NULL);
D
fix bug  
dapan1121 已提交
646
      } else {
D
dapan1121 已提交
647
        colDataAppend(pOutputCol, i, (char *)tmp, false);
D
fix bug  
dapan1121 已提交
648 649
      }
    }
D
dapan1121 已提交
650 651
  } else if (IS_UNSIGNED_NUMERIC_TYPE(pCtx->inType)) {
    for (int32_t i = pCtx->startIndex; i <= pCtx->endIndex; ++i) {
D
fix bug  
dapan1121 已提交
652 653 654 655 656 657
      if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
        colDataAppendNULL(pOutputCol, i);
        continue;
      }
      
      uint64_t value = 0;
D
dapan1121 已提交
658
      GET_TYPED_DATA(value, uint64_t, pCtx->inType, colDataGetData(pInputCol, i));
D
fix bug  
dapan1121 已提交
659 660
      int32_t len = sprintf(varDataVal(tmp), "%" PRIu64, value);
      varDataLen(tmp) = len;
D
dapan1121 已提交
661 662
      if (pCtx->outType == TSDB_DATA_TYPE_NCHAR) {
        varToNchar(tmp, pCtx->pOut, i, NULL);
D
fix bug  
dapan1121 已提交
663
      } else {
D
dapan1121 已提交
664
        colDataAppend(pOutputCol, i, (char *)tmp, false);
D
fix bug  
dapan1121 已提交
665 666
      }
    }
D
dapan1121 已提交
667 668
  } else if (IS_FLOAT_TYPE(pCtx->inType)) {
    for (int32_t i = pCtx->startIndex; i <= pCtx->endIndex; ++i) {
D
fix bug  
dapan1121 已提交
669 670 671 672 673 674
      if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
        colDataAppendNULL(pOutputCol, i);
        continue;
      }
      
      double value = 0;
D
dapan1121 已提交
675
      GET_TYPED_DATA(value, double, pCtx->inType, colDataGetData(pInputCol, i));
D
fix bug  
dapan1121 已提交
676 677
      int32_t len = sprintf(varDataVal(tmp), "%lf", value);
      varDataLen(tmp) = len;
D
dapan1121 已提交
678 679
      if (pCtx->outType == TSDB_DATA_TYPE_NCHAR) {
        varToNchar(tmp, pCtx->pOut, i, NULL);
D
fix bug  
dapan1121 已提交
680
      } else {
D
dapan1121 已提交
681
        colDataAppend(pOutputCol, i, (char *)tmp, false);
D
fix bug  
dapan1121 已提交
682 683 684
      }
    }
  } else {
D
dapan1121 已提交
685
    sclError("not supported input type:%d", pCtx->inType);
D
fix bug  
dapan1121 已提交
686 687 688 689 690 691
    return TSDB_CODE_QRY_APP_ERROR;
  }

  return TSDB_CODE_SUCCESS;
}

692
// TODO opt performance
D
dapan1121 已提交
693
int32_t vectorConvertSingleColImpl(const SScalarParam* pIn, SScalarParam* pOut, int32_t* overflow, int32_t startIndex, int32_t numOfRows) {
694 695
  SColumnInfoData* pInputCol  = pIn->columnData;
  SColumnInfoData* pOutputCol = pOut->columnData;
H
Haojun Liao 已提交
696

D
dapan1121 已提交
697 698 699 700
  if (NULL == pInputCol) {
    sclError("input column is NULL, hashFilter %p", pIn->pHashFilter);
    return TSDB_CODE_APP_ERROR;
  }
D
dapan1121 已提交
701

D
dapan1121 已提交
702 703 704 705 706 707
  int32_t rstart = startIndex >= 0 ? startIndex : 0;
  int32_t rend = numOfRows > 0 ? rstart + numOfRows - 1 : rstart + pIn->numOfRows - 1;
  SSclVectorConvCtx cCtx = {pIn, pOut, rstart, rend, pInputCol->info.type, pOutputCol->info.type};

  if (IS_VAR_DATA_TYPE(cCtx.inType)) {
    return vectorConvertFromVarData(&cCtx, overflow);
D
dapan1121 已提交
708 709 710 711 712 713 714
  }

  if (overflow) {
    ASSERT(1 == pIn->numOfRows);

    pOut->numOfRows = 0;
    
D
dapan1121 已提交
715 716 717
    if (IS_SIGNED_NUMERIC_TYPE(cCtx.outType)) {
      int64_t minValue = tDataTypes[cCtx.outType].minValue;
      int64_t maxValue = tDataTypes[cCtx.outType].maxValue;
D
dapan1121 已提交
718 719
      
      double value = 0;
D
dapan1121 已提交
720
      GET_TYPED_DATA(value, double, cCtx.inType, colDataGetData(pInputCol, 0));
D
dapan1121 已提交
721 722 723 724 725 726 727 728 729 730
      
      if (value > maxValue) {
        *overflow = 1;
        return TSDB_CODE_SUCCESS;
      } else if (value < minValue) {
        *overflow = -1;
        return TSDB_CODE_SUCCESS;
      } else {
        *overflow = 0;
      }
D
dapan1121 已提交
731 732 733
    } else if (IS_UNSIGNED_NUMERIC_TYPE(cCtx.outType)) {
      uint64_t minValue = (uint64_t)tDataTypes[cCtx.outType].minValue;
      uint64_t maxValue = (uint64_t)tDataTypes[cCtx.outType].maxValue;
D
dapan1121 已提交
734 735
      
      double value = 0;
D
dapan1121 已提交
736
      GET_TYPED_DATA(value, double, cCtx.inType, colDataGetData(pInputCol, 0));
D
dapan1121 已提交
737 738 739 740 741 742 743 744 745 746 747
      
      if (value > maxValue) {
        *overflow = 1;
        return TSDB_CODE_SUCCESS;
      } else if (value < minValue) {
        *overflow = -1;
        return TSDB_CODE_SUCCESS;
      } else {
        *overflow = 0;
      }
    }
D
dapan 已提交
748
  }
749 750

  pOut->numOfRows = pIn->numOfRows;
D
dapan1121 已提交
751
  switch (cCtx.outType) {
752
    case TSDB_DATA_TYPE_BOOL: {
D
dapan1121 已提交
753
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
754
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
755
          colDataAppendNULL(pOutputCol, i);
756 757 758 759
          continue;
        }

        bool value = 0;
D
dapan1121 已提交
760
        GET_TYPED_DATA(value, bool, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
761 762 763 764 765
        colDataAppendInt8(pOutputCol, i, (int8_t *)&value);
      }
      break;
    }
    case TSDB_DATA_TYPE_TINYINT: {
D
dapan1121 已提交
766
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
D
dapan1121 已提交
767 768 769 770 771 772
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }

        int8_t value = 0;
D
dapan1121 已提交
773
        GET_TYPED_DATA(value, int8_t, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
774 775 776 777 778
        colDataAppendInt8(pOutputCol, i, (int8_t *)&value);
      }
      break;
    }
    case TSDB_DATA_TYPE_SMALLINT:{
D
dapan1121 已提交
779
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
D
dapan1121 已提交
780 781 782 783 784 785
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }

        int16_t value = 0;
D
dapan1121 已提交
786
        GET_TYPED_DATA(value, int16_t, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
787 788 789 790 791
        colDataAppendInt16(pOutputCol, i, (int16_t *)&value);
      }
      break;
    }
    case TSDB_DATA_TYPE_INT:{
D
dapan1121 已提交
792
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
D
dapan1121 已提交
793 794 795 796 797 798
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }

        int32_t value = 0;
D
dapan1121 已提交
799
        GET_TYPED_DATA(value, int32_t, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
800
        colDataAppendInt32(pOutputCol, i, (int32_t *)&value);
801 802 803
      }
      break;
    }
D
dapan1121 已提交
804
    case TSDB_DATA_TYPE_BIGINT:
805
    case TSDB_DATA_TYPE_TIMESTAMP: {
D
dapan1121 已提交
806
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
807
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
808
          colDataAppendNULL(pOutputCol, i);
D
dapan 已提交
809
          continue;
D
dapan1121 已提交
810
        }
D
dapan 已提交
811 812

        int64_t value = 0;
D
dapan1121 已提交
813
        GET_TYPED_DATA(value, int64_t, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
814
        colDataAppendInt64(pOutputCol, i, (int64_t *)&value);
D
dapan1121 已提交
815 816
      }
      break;
817
    }
D
dapan1121 已提交
818
    case TSDB_DATA_TYPE_UTINYINT:{
D
dapan1121 已提交
819
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
D
dapan1121 已提交
820 821 822 823 824 825
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }
        
        uint8_t value = 0;
D
dapan1121 已提交
826
        GET_TYPED_DATA(value, uint8_t, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
827 828 829 830 831
        colDataAppendInt8(pOutputCol, i, (int8_t *)&value);
      }
      break;
    }
    case TSDB_DATA_TYPE_USMALLINT:{
D
dapan1121 已提交
832
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
D
dapan1121 已提交
833 834 835 836 837 838
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }
        
        uint16_t value = 0;
D
dapan1121 已提交
839
        GET_TYPED_DATA(value, uint16_t, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
840 841 842 843 844
        colDataAppendInt16(pOutputCol, i, (int16_t *)&value);
      }
      break;
    }
    case TSDB_DATA_TYPE_UINT:{
D
dapan1121 已提交
845
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
D
dapan1121 已提交
846 847 848 849 850 851
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }
        
        uint32_t value = 0;
D
dapan1121 已提交
852
        GET_TYPED_DATA(value, uint32_t, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
853 854 855 856 857
        colDataAppendInt32(pOutputCol, i, (int32_t *)&value);
      }
      break;
    }
    case TSDB_DATA_TYPE_UBIGINT: {
D
dapan1121 已提交
858
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
859
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
860
          colDataAppendNULL(pOutputCol, i);
D
dapan 已提交
861
          continue;
D
dapan1121 已提交
862 863
        }
        
D
dapan 已提交
864
        uint64_t value = 0;
D
dapan1121 已提交
865
        GET_TYPED_DATA(value, uint64_t, cCtx.inType, colDataGetData(pInputCol, i));
866
        colDataAppendInt64(pOutputCol, i, (int64_t*)&value);
D
dapan1121 已提交
867 868
      }
      break;
D
dapan1121 已提交
869 870
    }
    case TSDB_DATA_TYPE_FLOAT:{
D
dapan1121 已提交
871
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
D
dapan1121 已提交
872 873 874 875 876 877
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }
        
        float value = 0;
D
dapan1121 已提交
878
        GET_TYPED_DATA(value, float, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
879 880 881 882 883
        colDataAppendFloat(pOutputCol, i, (float*)&value);
      }
      break;  
    }
    case TSDB_DATA_TYPE_DOUBLE: {
D
dapan1121 已提交
884
      for (int32_t i = cCtx.startIndex; i <= cCtx.endIndex; ++i) {
885
        if (colDataIsNull_f(pInputCol->nullbitmap, i)) {
886
          colDataAppendNULL(pOutputCol, i);
D
dapan 已提交
887
          continue;
D
dapan1121 已提交
888 889
        }
        
D
dapan 已提交
890
        double value = 0;
D
dapan1121 已提交
891
        GET_TYPED_DATA(value, double, cCtx.inType, colDataGetData(pInputCol, i));
D
dapan1121 已提交
892
        colDataAppendDouble(pOutputCol, i, (double*)&value);
D
dapan1121 已提交
893
      }
D
dapan1121 已提交
894 895
      break;  
    }
D
fix bug  
dapan1121 已提交
896 897
    case TSDB_DATA_TYPE_BINARY: 
    case TSDB_DATA_TYPE_NCHAR: {
D
dapan1121 已提交
898
      return vectorConvertToVarData(&cCtx);
D
fix bug  
dapan1121 已提交
899
    }
D
dapan1121 已提交
900
    default:
D
dapan1121 已提交
901
      sclError("invalid convert output type:%d", cCtx.outType);
D
dapan1121 已提交
902 903 904 905 906 907
      return TSDB_CODE_QRY_APP_ERROR;
  }

  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
908 909


D
dapan1121 已提交
910
int8_t gConvertTypes[TSDB_DATA_TYPE_BLOB+1][TSDB_DATA_TYPE_BLOB+1] = {
911
/*         NULL BOOL TINY SMAL INT  BIG  FLOA DOUB VARC TIME NCHA UTIN USMA UINT UBIG JSON VARB DECI BLOB */
H
Haojun Liao 已提交
912
/*NULL*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
D
dapan1121 已提交
913
/*BOOL*/   0,   0,   2,   3,   4,   5,   6,   7,   7,   9,   7,   11,  12,  13,  14,  0,   7,   0,   0,
914 915 916
/*TINY*/   0,   0,   0,   3,   4,   5,   6,   7,   7,   9,   7,   3,   4,   5,   7,   0,   7,   0,   0,
/*SMAL*/   0,   0,   0,   0,   4,   5,   6,   7,   7,   9,   7,   3,   4,   5,   7,   0,   7,   0,   0,
/*INT */   0,   0,   0,   0,   0,   5,   6,   7,   7,   9,   7,   4,   4,   5,   7,   0,   7,   0,   0,
D
dapan1121 已提交
917
/*BIGI*/   0,   0,   0,   0,   0,   0,   6,   7,   7,   9,   7,   5,   5,   5,   7,   0,   7,   0,   0,
918 919
/*FLOA*/   0,   0,   0,   0,   0,   0,   0,   7,   7,   6,   7,   6,   6,   6,   6,   0,   7,   0,   0,
/*DOUB*/   0,   0,   0,   0,   0,   0,   0,   0,   7,   7,   7,   7,   7,   7,   7,   0,   7,   0,   0,
D
dapan1121 已提交
920
/*VARC*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   9,   8,   7,   7,   7,   7,   0,   0,   0,   0,
D
dapan1121 已提交
921
/*TIME*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   9,   9,   9,   9,   7,   0,   7,   0,   0,
H
Haojun Liao 已提交
922
/*NCHA*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   7,   7,   7,   7,   0,   0,   0,   0,
923 924 925 926
/*UTIN*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   12,  13,  14,  0,   7,   0,   0,
/*USMA*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   13,  14,  0,   7,   0,   0,
/*UINT*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   14,  0,   7,   0,   0,
/*UBIG*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   7,   0,   0,
H
Haojun Liao 已提交
927
/*JSON*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
928
/*VARB*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
H
Haojun Liao 已提交
929 930
/*DECI*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
/*BLOB*/   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0,   0
D
dapan1121 已提交
931 932
};

D
dapan1121 已提交
933 934 935 936 937 938 939 940 941 942 943 944
int32_t vectorGetConvertType(int32_t type1, int32_t type2) {
  if (type1 == type2) {
    return 0;
  }

  if (type1 < type2) {
    return gConvertTypes[type1][type2];
  }

  return gConvertTypes[type2][type1];
}

D
dapan1121 已提交
945
int32_t vectorConvertSingleCol(SScalarParam *input, SScalarParam *output, int32_t type, int32_t startIndex, int32_t numOfRows) {
D
dapan1121 已提交
946 947 948
  SDataType t = {.type = type, .bytes = tDataTypes[type].bytes};
  output->numOfRows = input->numOfRows;

H
Haojun Liao 已提交
949 950
  int32_t code = sclCreateColumnInfoData(&t, input->numOfRows, output);
  if (code != TSDB_CODE_SUCCESS) {
D
dapan1121 已提交
951
    return TSDB_CODE_OUT_OF_MEMORY;
D
dapan1121 已提交
952 953
  }

D
dapan1121 已提交
954
  code = vectorConvertSingleColImpl(input, output, NULL, startIndex, numOfRows);
D
dapan1121 已提交
955 956 957 958 959 960 961
  if (code) {
    return code;
  }

  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
962
int32_t vectorConvertCols(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam* pLeftOut, SScalarParam* pRightOut, int32_t startIndex, int32_t numOfRows) {
963 964 965
  int32_t leftType  = GET_PARAM_TYPE(pLeft);
  int32_t rightType = GET_PARAM_TYPE(pRight);
  if (leftType == rightType) {
D
dapan1121 已提交
966 967 968
    return TSDB_CODE_SUCCESS;
  }

D
dapan1121 已提交
969 970
  SScalarParam *param1 = NULL, *paramOut1 = NULL; 
  SScalarParam *param2 = NULL, *paramOut2 = NULL;
D
dapan1121 已提交
971 972
  int32_t code = 0;
  
973
  if (leftType < rightType) {
D
dapan1121 已提交
974 975 976 977 978 979 980 981 982 983 984
    param1 = pLeft;
    param2 = pRight;
    paramOut1 = pLeftOut;
    paramOut2 = pRightOut;
  } else {
    param1 = pRight;
    param2 = pLeft;
    paramOut1 = pRightOut;
    paramOut2 = pLeftOut;
  }

985
  int8_t type = vectorGetConvertType(GET_PARAM_TYPE(param1), GET_PARAM_TYPE(param2));
D
dapan1121 已提交
986 987 988 989
  if (0 == type) {
    return TSDB_CODE_SUCCESS;
  }

990
  if (type != GET_PARAM_TYPE(param1)) {
D
dapan1121 已提交
991
    code = vectorConvertSingleCol(param1, paramOut1, type, startIndex, numOfRows);
D
dapan1121 已提交
992 993 994
    if (code) {
      return code;
    }
D
dapan1121 已提交
995 996
  }
  
997
  if (type != GET_PARAM_TYPE(param2)) {
D
dapan1121 已提交
998
    code = vectorConvertSingleCol(param2, paramOut2, type, startIndex, numOfRows);
D
dapan1121 已提交
999 1000 1001
    if (code) {
      return code;
    }
D
dapan1121 已提交
1002 1003 1004 1005 1006
  }

  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
1007 1008 1009 1010 1011
enum {
  VECTOR_DO_CONVERT = 0x1,
  VECTOR_UN_CONVERT = 0x2,
};

1012 1013 1014 1015 1016 1017 1018
// TODO not correct for descending order scan
static void vectorMathAddHelper(SColumnInfoData* pLeftCol, SColumnInfoData* pRightCol, SColumnInfoData* pOutputCol, int32_t numOfRows, int32_t step, int32_t i) {
  _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
  _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);

  double *output = (double *)pOutputCol->pData;

wmmhello's avatar
wmmhello 已提交
1019
  if (IS_HELPER_NULL(pRightCol, 0)) {  // Set pLeft->numOfRows NULL value
1020
    colDataAppendNNULL(pOutputCol, 0, numOfRows);
1021 1022
  } else {
    for (; i >= 0 && i < numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1023
      if (IS_HELPER_NULL(pLeftCol, i)) {
1024 1025 1026 1027 1028
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
      *output = getVectorDoubleValueFnLeft(LEFT_COL, i)
                + getVectorDoubleValueFnRight(RIGHT_COL, 0);
D
dapan1121 已提交
1029 1030
    }
  }
1031
}
D
dapan1121 已提交
1032

D
dapan1121 已提交
1033
static void vectorMathTsAddHelper(SColumnInfoData* pLeftCol, SColumnInfoData* pRightCol, SColumnInfoData* pOutputCol, int32_t numOfRows, int32_t step, int32_t i) {
1034 1035 1036 1037 1038
  _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
  _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);

  int64_t *output = (int64_t *)pOutputCol->pData;

wmmhello's avatar
wmmhello 已提交
1039
  if (IS_HELPER_NULL(pRightCol, 0)) {  // Set pLeft->numOfRows NULL value
1040 1041 1042
    colDataAppendNNULL(pOutputCol, 0, numOfRows);
  } else {
    for (; i >= 0 && i < numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1043
      if (IS_HELPER_NULL(pLeftCol, i)) {
1044 1045 1046
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
D
dapan1121 已提交
1047 1048
      *output = taosTimeAdd(getVectorBigintValueFnLeft(pLeftCol->pData, i), getVectorBigintValueFnRight(pRightCol->pData, 0),
                            pRightCol->info.scale, pRightCol->info.precision);
1049 1050 1051 1052
    }
  }
}

D
dapan1121 已提交
1053 1054 1055
static SColumnInfoData* vectorConvertVarToDouble(SScalarParam* pInput, int32_t* converted) {
  SScalarParam output = {0};
  SColumnInfoData* pCol = pInput->columnData;
H
Haojun Liao 已提交
1056

D
dapan1121 已提交
1057 1058 1059 1060 1061 1062
  if (IS_VAR_DATA_TYPE(pCol->info.type) && pCol->info.type != TSDB_DATA_TYPE_JSON) {
    int32_t code = vectorConvertSingleCol(pInput, &output, TSDB_DATA_TYPE_DOUBLE, -1, -1);
    if (code != TSDB_CODE_SUCCESS) {
      terrno = code;
      return NULL;
    }
H
Haojun Liao 已提交
1063

D
dapan1121 已提交
1064 1065 1066
    *converted = VECTOR_DO_CONVERT;

    return output.columnData;
H
Haojun Liao 已提交
1067
  }
D
dapan1121 已提交
1068 1069 1070 1071

  *converted = VECTOR_UN_CONVERT;
  
  return pInput->columnData;
H
Haojun Liao 已提交
1072 1073 1074 1075 1076
}

static void doReleaseVec(SColumnInfoData* pCol, int32_t type) {
  if (type == VECTOR_DO_CONVERT) {
    colDataDestroy(pCol);
H
Haojun Liao 已提交
1077
    taosMemoryFree(pCol);
H
Haojun Liao 已提交
1078 1079 1080
  }
}

1081 1082 1083 1084 1085 1086
void vectorMathAdd(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;

  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;

1087 1088
  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);

H
Haojun Liao 已提交
1089
  int32_t leftConvert = 0, rightConvert = 0;
D
dapan1121 已提交
1090 1091
  SColumnInfoData *pLeftCol   = vectorConvertVarToDouble(pLeft, &leftConvert);
  SColumnInfoData *pRightCol  = vectorConvertVarToDouble(pRight, &rightConvert);
1092

1093 1094 1095 1096
  if ((GET_PARAM_TYPE(pLeft) == TSDB_DATA_TYPE_TIMESTAMP && IS_INTEGER_TYPE(GET_PARAM_TYPE(pRight))) ||
      (GET_PARAM_TYPE(pRight) == TSDB_DATA_TYPE_TIMESTAMP && IS_INTEGER_TYPE(GET_PARAM_TYPE(pLeft))) ||
      (GET_PARAM_TYPE(pLeft) == TSDB_DATA_TYPE_TIMESTAMP && GET_PARAM_TYPE(pRight) == TSDB_DATA_TYPE_BOOL) ||
      (GET_PARAM_TYPE(pRight) == TSDB_DATA_TYPE_TIMESTAMP && GET_PARAM_TYPE(pLeft) == TSDB_DATA_TYPE_BOOL)) { //timestamp plus duration
1097 1098 1099
    int64_t *output = (int64_t *)pOutputCol->pData;
    _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
    _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);
1100

D
dapan1121 已提交
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
    if (pLeft->numOfRows == 1 && pRight->numOfRows == 1) {
      if (GET_PARAM_TYPE(pLeft) == TSDB_DATA_TYPE_TIMESTAMP) {
        vectorMathTsAddHelper(pLeftCol, pRightCol, pOutputCol, pRight->numOfRows, step, i);
      } else {
        vectorMathTsAddHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, i);
      }
    } else if (pLeft->numOfRows == 1) {
      vectorMathTsAddHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, i);
    } else if (pRight->numOfRows == 1) {
      vectorMathTsAddHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, i);
    } else if (pLeft->numOfRows == pRight->numOfRows) {
1112
      for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1113
        if (IS_NULL) {
wmmhello's avatar
wmmhello 已提交
1114 1115 1116
          colDataAppendNULL(pOutputCol, i);
          continue;  // TODO set null or ignore
        }
1117
        *output = getVectorBigintValueFnLeft(pLeftCol->pData, i) + getVectorBigintValueFnRight(pRightCol->pData, i);
1118
      }
D
dapan1121 已提交
1119
    } 
1120 1121 1122 1123
  } else {
    double *output = (double *)pOutputCol->pData;
    _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
    _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);
1124

1125 1126
    if (pLeft->numOfRows == pRight->numOfRows) {
      for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1127
        if (IS_NULL){
1128 1129 1130 1131
          colDataAppendNULL(pOutputCol, i);
          continue;  // TODO set null or ignore
        }
        *output = getVectorDoubleValueFnLeft(LEFT_COL, i) + getVectorDoubleValueFnRight(RIGHT_COL, i);
1132 1133 1134 1135 1136 1137
      }
    } else if (pLeft->numOfRows == 1) {
      vectorMathAddHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, i);
    } else if (pRight->numOfRows == 1) {
      vectorMathAddHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, i);
    }
1138
  }
H
Haojun Liao 已提交
1139 1140 1141

  doReleaseVec(pLeftCol, leftConvert);
  doReleaseVec(pRightCol, rightConvert);
1142
}
D
dapan1121 已提交
1143

1144 1145 1146 1147 1148 1149 1150
// TODO not correct for descending order scan
static void vectorMathSubHelper(SColumnInfoData* pLeftCol, SColumnInfoData* pRightCol, SColumnInfoData* pOutputCol, int32_t numOfRows, int32_t step, int32_t factor, int32_t i) {
  _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
  _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);

  double *output = (double *)pOutputCol->pData;

wmmhello's avatar
wmmhello 已提交
1151
  if (IS_HELPER_NULL(pRightCol, 0)) {  // Set pLeft->numOfRows NULL value
1152
    colDataAppendNNULL(pOutputCol, 0, numOfRows);
1153 1154
  } else {
    for (; i >= 0 && i < numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1155
      if (IS_HELPER_NULL(pLeftCol, i)) {
1156 1157 1158 1159 1160
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
      *output = (getVectorDoubleValueFnLeft(LEFT_COL, i)
                 - getVectorDoubleValueFnRight(RIGHT_COL, 0)) * factor;
D
dapan1121 已提交
1161
    }
1162 1163
  }
}
D
dapan1121 已提交
1164

D
dapan1121 已提交
1165
static void vectorMathTsSubHelper(SColumnInfoData* pLeftCol, SColumnInfoData* pRightCol, SColumnInfoData* pOutputCol, int32_t numOfRows, int32_t step, int32_t factor, int32_t i) {
1166 1167 1168 1169 1170
  _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
  _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);

  int64_t *output = (int64_t *)pOutputCol->pData;

wmmhello's avatar
wmmhello 已提交
1171
  if (IS_HELPER_NULL(pRightCol, 0)) {  // Set pLeft->numOfRows NULL value
1172 1173 1174
    colDataAppendNNULL(pOutputCol, 0, numOfRows);
  } else {
    for (; i >= 0 && i < numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1175
      if (IS_HELPER_NULL(pLeftCol, i)) {
1176 1177 1178
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
H
Haojun Liao 已提交
1179
      *output = taosTimeAdd(getVectorBigintValueFnLeft(pLeftCol->pData, i), -getVectorBigintValueFnRight(pRightCol->pData, 0),
D
dapan1121 已提交
1180 1181
                            pRightCol->info.scale, pRightCol->info.precision);
      
1182 1183 1184 1185
    }
  }
}

1186 1187
void vectorMathSub(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;
D
dapan1121 已提交
1188

1189 1190
  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);

1191 1192
  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;
D
dapan1121 已提交
1193

H
Haojun Liao 已提交
1194
  int32_t leftConvert = 0, rightConvert = 0;
D
dapan1121 已提交
1195 1196
  SColumnInfoData *pLeftCol   = vectorConvertVarToDouble(pLeft, &leftConvert);
  SColumnInfoData *pRightCol  = vectorConvertVarToDouble(pRight, &rightConvert);
1197

1198 1199 1200 1201 1202
  if ((GET_PARAM_TYPE(pLeft) == TSDB_DATA_TYPE_TIMESTAMP && GET_PARAM_TYPE(pRight) == TSDB_DATA_TYPE_BIGINT) ||
      (GET_PARAM_TYPE(pRight) == TSDB_DATA_TYPE_TIMESTAMP && GET_PARAM_TYPE(pLeft) == TSDB_DATA_TYPE_BIGINT)) { //timestamp minus duration
    int64_t *output = (int64_t *)pOutputCol->pData;
    _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
    _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);
1203

D
dapan1121 已提交
1204 1205 1206 1207 1208 1209 1210
    if (pLeft->numOfRows == 1 && pRight->numOfRows == 1) {
      vectorMathTsSubHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, 1, i);
    } else if (pLeft->numOfRows == 1) {
      vectorMathTsSubHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, -1, i);
    } else if (pRight->numOfRows == 1) {
      vectorMathTsSubHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, 1, i);
    } else if (pLeft->numOfRows == pRight->numOfRows) {
1211
      for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1212
        if (IS_NULL) {
wmmhello's avatar
wmmhello 已提交
1213 1214 1215
          colDataAppendNULL(pOutputCol, i);
          continue;  // TODO set null or ignore
        }
1216
        *output = getVectorBigintValueFnLeft(pLeftCol->pData, i) - getVectorBigintValueFnRight(pRightCol->pData, i);
1217
      }
D
dapan1121 已提交
1218
    }
1219 1220 1221 1222 1223 1224 1225
  } else {
    double *output = (double *)pOutputCol->pData;
    _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
    _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);

    if (pLeft->numOfRows == pRight->numOfRows) {
      for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1226
        if (IS_NULL) {
1227 1228 1229 1230
          colDataAppendNULL(pOutputCol, i);
          continue;  // TODO set null or ignore
        }
        *output = getVectorDoubleValueFnLeft(LEFT_COL, i) - getVectorDoubleValueFnRight(RIGHT_COL, i);
1231 1232 1233 1234 1235 1236
      }
    } else if (pLeft->numOfRows == 1) {
      vectorMathSubHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, -1, i);
    } else if (pRight->numOfRows == 1) {
      vectorMathSubHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, 1, i);
    }
1237
  }
H
Haojun Liao 已提交
1238 1239 1240

  doReleaseVec(pLeftCol,  leftConvert);
  doReleaseVec(pRightCol, rightConvert);
D
dapan1121 已提交
1241 1242
}

1243 1244 1245 1246
// TODO not correct for descending order scan
static void vectorMathMultiplyHelper(SColumnInfoData* pLeftCol, SColumnInfoData* pRightCol, SColumnInfoData* pOutputCol, int32_t numOfRows, int32_t step, int32_t i) {
  _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
  _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);
D
dapan1121 已提交
1247

1248
  double *output = (double *)pOutputCol->pData;
D
dapan1121 已提交
1249

wmmhello's avatar
wmmhello 已提交
1250
  if (IS_HELPER_NULL(pRightCol, 0)) {  // Set pLeft->numOfRows NULL value
1251
    colDataAppendNNULL(pOutputCol, 0, numOfRows);
1252 1253
  } else {
    for (; i >= 0 && i < numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1254
      if (IS_HELPER_NULL(pLeftCol, i)) {
1255 1256 1257
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
1258
      *output = getVectorDoubleValueFnLeft(LEFT_COL, i) * getVectorDoubleValueFnRight(RIGHT_COL, 0);
1259 1260
    }
  }
D
dapan1121 已提交
1261 1262
}

1263 1264
void vectorMathMultiply(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;
1265
  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);
1266 1267 1268 1269

  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;

H
Haojun Liao 已提交
1270
  int32_t leftConvert = 0, rightConvert = 0;
D
dapan1121 已提交
1271 1272
  SColumnInfoData *pLeftCol   = vectorConvertVarToDouble(pLeft, &leftConvert);
  SColumnInfoData *pRightCol  = vectorConvertVarToDouble(pRight, &rightConvert);
1273 1274 1275 1276 1277 1278 1279

  _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
  _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);

  double *output = (double *)pOutputCol->pData;
  if (pLeft->numOfRows == pRight->numOfRows) {
    for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1280
      if (IS_NULL) {
1281 1282 1283
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
1284
      *output = getVectorDoubleValueFnLeft(LEFT_COL, i) * getVectorDoubleValueFnRight(RIGHT_COL, i);
1285 1286 1287 1288 1289
    }
  } else if (pLeft->numOfRows == 1) {
    vectorMathMultiplyHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, i);
  } else if (pRight->numOfRows == 1) {
    vectorMathMultiplyHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, i);
D
dapan1121 已提交
1290
  }
H
Haojun Liao 已提交
1291 1292 1293

  doReleaseVec(pLeftCol, leftConvert);
  doReleaseVec(pRightCol, rightConvert);
D
dapan1121 已提交
1294 1295
}

1296 1297
void vectorMathDivide(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;
1298
  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);
D
dapan1121 已提交
1299

1300 1301 1302
  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;

H
Haojun Liao 已提交
1303
  int32_t leftConvert = 0, rightConvert = 0;
D
dapan1121 已提交
1304 1305
  SColumnInfoData *pLeftCol  = vectorConvertVarToDouble(pLeft, &leftConvert);
  SColumnInfoData *pRightCol = vectorConvertVarToDouble(pRight, &rightConvert);
1306

1307 1308 1309 1310
  _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
  _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);

  double *output = (double *)pOutputCol->pData;
1311
  if (pLeft->numOfRows == pRight->numOfRows) {
1312
    for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1313
      if (IS_NULL || (getVectorDoubleValueFnRight(RIGHT_COL, i) == 0)) { //divide by 0 check
1314
        colDataAppendNULL(pOutputCol, i);
1315
        continue;
1316
      }
1317
      *output = getVectorDoubleValueFnLeft(LEFT_COL, i)
1318
                / getVectorDoubleValueFnRight(RIGHT_COL, i);
1319 1320
    }
  } else if (pLeft->numOfRows == 1) {
wmmhello's avatar
wmmhello 已提交
1321
    if (IS_HELPER_NULL(pLeftCol, 0)) {  // Set pLeft->numOfRows NULL value
1322
      colDataAppendNNULL(pOutputCol, 0, pRight->numOfRows);
1323 1324
    } else {
      for (; i >= 0 && i < pRight->numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1325
        if (IS_HELPER_NULL(pRightCol, i) || (getVectorDoubleValueFnRight(RIGHT_COL, i) == 0)) { // divide by 0 check
1326
          colDataAppendNULL(pOutputCol, i);
1327
          continue;
1328 1329 1330
        }
        *output = getVectorDoubleValueFnLeft(LEFT_COL, 0)
                  / getVectorDoubleValueFnRight(RIGHT_COL, i);
1331 1332 1333
      }
    }
  } else if (pRight->numOfRows == 1) {
wmmhello's avatar
wmmhello 已提交
1334
    if (IS_HELPER_NULL(pRightCol, 0) || (getVectorDoubleValueFnRight(RIGHT_COL, 0) == 0)) {  // Set pLeft->numOfRows NULL value (divde by 0 check)
1335
      colDataAppendNNULL(pOutputCol, 0, pLeft->numOfRows);
1336 1337
    } else {
      for (; i >= 0 && i < pLeft->numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1338
        if (IS_HELPER_NULL(pLeftCol, i)) {
1339
          colDataAppendNULL(pOutputCol, i);
1340
          continue;
1341 1342 1343
        }
        *output = getVectorDoubleValueFnLeft(LEFT_COL, i)
                  / getVectorDoubleValueFnRight(RIGHT_COL, 0);
1344 1345 1346
      }
    }
  }
H
Haojun Liao 已提交
1347 1348 1349

  doReleaseVec(pLeftCol,  leftConvert);
  doReleaseVec(pRightCol, rightConvert);
D
dapan1121 已提交
1350 1351
}

1352 1353
void vectorMathRemainder(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;
1354
  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);
1355 1356 1357

  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;
D
dapan1121 已提交
1358

H
Haojun Liao 已提交
1359
  int32_t leftConvert = 0, rightConvert = 0;
D
dapan1121 已提交
1360 1361
  SColumnInfoData *pLeftCol  = vectorConvertVarToDouble(pLeft, &leftConvert);
  SColumnInfoData *pRightCol = vectorConvertVarToDouble(pRight, &rightConvert);
1362

1363 1364
  _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);
  _getDoubleValue_fn_t getVectorDoubleValueFnRight = getVectorDoubleValueFn(pRightCol->info.type);
1365 1366 1367 1368 1369

  double *output = (double *)pOutputCol->pData;

  if (pLeft->numOfRows == pRight->numOfRows) {
    for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1370
      if (IS_NULL) {
1371
        colDataAppendNULL(pOutputCol, i);
1372 1373 1374
        continue;
      }

1375 1376 1377
      double lx = getVectorDoubleValueFnLeft(LEFT_COL, i);
      double rx = getVectorDoubleValueFnRight(RIGHT_COL, i);
      if (isnan(lx) || isinf(lx) || isnan(rx) || isinf(rx) || FLT_EQUAL(rx, 0)) {
1378
        colDataAppendNULL(pOutputCol, i);
1379 1380 1381
        continue;
      }

1382
      *output = lx - ((int64_t)(lx / rx)) * rx;
1383 1384
    }
  } else if (pLeft->numOfRows == 1) {
1385
    double lx = getVectorDoubleValueFnLeft(LEFT_COL, 0);
wmmhello's avatar
wmmhello 已提交
1386
    if (IS_HELPER_NULL(pLeftCol, 0)) {  // Set pLeft->numOfRows NULL value
1387
      colDataAppendNNULL(pOutputCol, 0, pRight->numOfRows);
1388 1389
    } else {
      for (; i >= 0 && i < pRight->numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1390
        if (IS_HELPER_NULL(pRightCol, i)) {
1391
          colDataAppendNULL(pOutputCol, i);
1392 1393 1394
          continue;
        }

1395 1396
        double rx = getVectorDoubleValueFnRight(RIGHT_COL, i);
        if (isnan(rx) || isinf(rx) || FLT_EQUAL(rx, 0)) {
1397
          colDataAppendNULL(pOutputCol, i);
1398 1399 1400
          continue;
        }

1401
        *output = lx - ((int64_t)(lx / rx)) * rx;
1402 1403 1404
      }
    }
  } else if (pRight->numOfRows == 1) {
1405 1406
    double rx = getVectorDoubleValueFnRight(RIGHT_COL, 0);
    if (IS_HELPER_NULL(pRightCol, 0) || FLT_EQUAL(rx, 0)) {  // Set pLeft->numOfRows NULL value
1407
      colDataAppendNNULL(pOutputCol, 0, pLeft->numOfRows);
1408 1409
    } else {
      for (; i >= 0 && i < pLeft->numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1410
        if (IS_HELPER_NULL(pLeftCol, i)) {
1411
          colDataAppendNULL(pOutputCol, i);
1412 1413 1414
          continue;
        }

1415 1416 1417 1418 1419 1420 1421
        double lx = getVectorDoubleValueFnLeft(LEFT_COL, i);
        if (isnan(lx) || isinf(lx)) {
          colDataAppendNULL(pOutputCol, i);
          continue;
        }

        *output = lx - ((int64_t)(lx / rx)) * rx;
1422 1423 1424
      }
    }
  }
H
Haojun Liao 已提交
1425 1426 1427

  doReleaseVec(pLeftCol, leftConvert);
  doReleaseVec(pRightCol, rightConvert);
1428 1429
}

D
dapan1121 已提交
1430 1431 1432 1433 1434 1435 1436 1437 1438
void vectorMathMinus(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;

  pOut->numOfRows = pLeft->numOfRows;

  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : (pLeft->numOfRows - 1);
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;

  int32_t leftConvert = 0;
D
dapan1121 已提交
1439
  SColumnInfoData *pLeftCol   = vectorConvertVarToDouble(pLeft, &leftConvert);
D
dapan1121 已提交
1440 1441 1442 1443 1444

  _getDoubleValue_fn_t getVectorDoubleValueFnLeft  = getVectorDoubleValueFn(pLeftCol->info.type);

  double *output = (double *)pOutputCol->pData;
  for (; i < pLeft->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1445
    if (IS_HELPER_NULL(pLeftCol, i)) {
1446
      colDataAppendNULL(pOutputCol, i);
1447
      continue;
1448
    }
1449 1450
    double result = getVectorDoubleValueFnLeft(LEFT_COL, i);
    *output = (result == 0) ? 0 : -result;
D
dapan1121 已提交
1451 1452 1453 1454 1455
  }

  doReleaseVec(pLeftCol,  leftConvert);
}

D
dapan1121 已提交
1456 1457 1458 1459
void vectorAssign(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;
  pOut->numOfRows = pLeft->numOfRows;

wmmhello's avatar
wmmhello 已提交
1460
  if(colDataIsNull_s(pRight->columnData, 0)){
1461
    colDataAppendNNULL(pOutputCol, 0, pOut->numOfRows);
D
dapan1121 已提交
1462
  } else {
1463
    char* d = colDataGetData(pRight->columnData, 0);
D
dapan1121 已提交
1464
    for (int32_t i = 0; i < pOut->numOfRows; ++i) {
1465
      colDataAppend(pOutputCol, i, d, false);
D
dapan1121 已提交
1466 1467
    }
  }
1468 1469 1470

  ASSERT(pRight->numOfQualified == 1 || pRight->numOfQualified == 0);
  pOut->numOfQualified = pRight->numOfQualified * pOut->numOfRows;
D
dapan1121 已提交
1471 1472
}

D
dapan1121 已提交
1473
void vectorConcat(SScalarParam* pLeft, SScalarParam* pRight, void *out, int32_t _ord) {
1474
#if 0
1475 1476
  int32_t len = pLeft->bytes + pRight->bytes;

1477
  int32_t i = ((_ord) == TSDB_ORDER_ASC) ? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
1478 1479 1480
  int32_t step = ((_ord) == TSDB_ORDER_ASC) ? 1 : -1;

  char *output = (char *)out;
1481 1482
  if (pLeft->numOfRows == pRight->numOfRows) {
    for (; i < pRight->numOfRows && i >= 0; i += step, output += len) {
1483 1484 1485
      char* left = POINTER_SHIFT(pLeft->data, pLeft->bytes * i);
      char* right = POINTER_SHIFT(pRight->data, pRight->bytes * i);

H
Haojun Liao 已提交
1486
      if (isNull(left, pLeftCol->info.type) || isNull(right, pRight->info.type)) {
1487 1488 1489 1490 1491 1492 1493 1494 1495
        setVardataNull(output, TSDB_DATA_TYPE_BINARY);
        continue;
      }

      // todo define a macro
      memcpy(varDataVal(output), varDataVal(left), varDataLen(left));
      memcpy(varDataVal(output) + varDataLen(left), varDataVal(right), varDataLen(right));
      varDataSetLen(output, varDataLen(left) + varDataLen(right));
    }
1496 1497
  } else if (pLeft->numOfRows == 1) {
    for (; i >= 0 && i < pRight->numOfRows; i += step, output += len) {
1498
      char *right = POINTER_SHIFT(pRight->data, pRight->bytes * i);
H
Haojun Liao 已提交
1499
      if (isNull(pLeft->data, pLeftCol->info.type) || isNull(right, pRight->info.type)) {
1500 1501 1502 1503 1504 1505 1506 1507
        setVardataNull(output, TSDB_DATA_TYPE_BINARY);
        continue;
      }

      memcpy(varDataVal(output), varDataVal(pLeft->data), varDataLen(pLeft->data));
      memcpy(varDataVal(output) + varDataLen(pLeft->data), varDataVal(right), varDataLen(right));
      varDataSetLen(output, varDataLen(pLeft->data) + varDataLen(right));
    }
1508 1509
  } else if (pRight->numOfRows == 1) {
    for (; i >= 0 && i < pLeft->numOfRows; i += step, output += len) {
1510
      char* left = POINTER_SHIFT(pLeft->data, pLeft->bytes * i);
H
Haojun Liao 已提交
1511
      if (isNull(left, pLeftCol->info.type) || isNull(pRight->data, pRight->info.type)) {
1512 1513 1514 1515 1516 1517 1518 1519 1520
        SET_DOUBLE_NULL(output);
        continue;
      }

      memcpy(varDataVal(output), varDataVal(left), varDataLen(pRight->data));
      memcpy(varDataVal(output) + varDataLen(left), varDataVal(pRight->data), varDataLen(pRight->data));
      varDataSetLen(output, varDataLen(left) + varDataLen(pRight->data));
    }
  }
1521
#endif
1522 1523
}

1524 1525 1526
static void vectorBitAndHelper(SColumnInfoData* pLeftCol, SColumnInfoData* pRightCol, SColumnInfoData* pOutputCol, int32_t numOfRows, int32_t step, int32_t i) {
  _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
  _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);
D
dapan1121 已提交
1527

wmmhello's avatar
wmmhello 已提交
1528
  int64_t *output = (int64_t *)pOutputCol->pData;
D
dapan1121 已提交
1529

wmmhello's avatar
wmmhello 已提交
1530
  if (IS_HELPER_NULL(pRightCol, 0)) {  // Set pLeft->numOfRows NULL value
1531
    colDataAppendNNULL(pOutputCol, 0, numOfRows);
1532 1533
  } else {
    for (; i >= 0 && i < numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1534
      if (IS_HELPER_NULL(pLeftCol, i)) {
1535 1536 1537 1538
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
      *output = getVectorBigintValueFnLeft(LEFT_COL, i) & getVectorBigintValueFnRight(RIGHT_COL, 0);
D
dapan1121 已提交
1539 1540
    }
  }
1541
}
D
dapan1121 已提交
1542

1543 1544
void vectorBitAnd(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;
1545
  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);
D
dapan 已提交
1546

1547 1548
  int32_t i = ((_ord) == TSDB_ORDER_ASC) ? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC) ? 1 : -1;
D
dapan1121 已提交
1549

H
Haojun Liao 已提交
1550
  int32_t leftConvert = 0, rightConvert = 0;
D
dapan1121 已提交
1551 1552
  SColumnInfoData *pLeftCol   = vectorConvertVarToDouble(pLeft, &leftConvert);
  SColumnInfoData *pRightCol  = vectorConvertVarToDouble(pRight, &rightConvert);
D
dapan1121 已提交
1553

H
Haojun Liao 已提交
1554 1555
  _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
  _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);
D
dapan1121 已提交
1556

1557 1558 1559
  int64_t *output = (int64_t *)pOutputCol->pData;
  if (pLeft->numOfRows == pRight->numOfRows) {
    for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1560
      if (IS_NULL) {
1561 1562 1563 1564
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
      *output = getVectorBigintValueFnLeft(LEFT_COL, i) & getVectorBigintValueFnRight(RIGHT_COL, i);
D
dapan1121 已提交
1565
    }
1566 1567 1568 1569 1570
  } else if (pLeft->numOfRows == 1) {
    vectorBitAndHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, i);
  } else if (pRight->numOfRows == 1) {
    vectorBitAndHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, i);
  }
H
Haojun Liao 已提交
1571 1572 1573

  doReleaseVec(pLeftCol,  leftConvert);
  doReleaseVec(pRightCol, rightConvert);
D
dapan1121 已提交
1574 1575
}

1576 1577 1578
static void vectorBitOrHelper(SColumnInfoData* pLeftCol, SColumnInfoData* pRightCol, SColumnInfoData* pOutputCol, int32_t numOfRows, int32_t step, int32_t i) {
  _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
  _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);
D
dapan1121 已提交
1579

1580
  int64_t *output = (int64_t *)pOutputCol->pData;
D
dapan1121 已提交
1581

wmmhello's avatar
wmmhello 已提交
1582
  if (IS_HELPER_NULL(pRightCol, 0)) {  // Set pLeft->numOfRows NULL value
1583
    colDataAppendNNULL(pOutputCol, 0, numOfRows);
1584
  } else {
1585
    int64_t rx = getVectorBigintValueFnRight(RIGHT_COL, 0);
1586
    for (; i >= 0 && i < numOfRows; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1587
      if (IS_HELPER_NULL(pLeftCol, i)) {
1588 1589 1590 1591
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
      *output = getVectorBigintValueFnLeft(LEFT_COL, i) | rx;
D
dapan1121 已提交
1592 1593
    }
  }
1594
}
D
dapan1121 已提交
1595

1596 1597
void vectorBitOr(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;
1598
  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);
D
dapan1121 已提交
1599

1600 1601
  int32_t i = ((_ord) == TSDB_ORDER_ASC) ? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC) ? 1 : -1;
D
dapan1121 已提交
1602

H
Haojun Liao 已提交
1603
  int32_t leftConvert = 0, rightConvert = 0;
D
dapan1121 已提交
1604 1605
  SColumnInfoData *pLeftCol   = vectorConvertVarToDouble(pLeft, &leftConvert);
  SColumnInfoData *pRightCol  = vectorConvertVarToDouble(pRight, &rightConvert);
D
dapan1121 已提交
1606

H
Haojun Liao 已提交
1607 1608
  _getBigintValue_fn_t getVectorBigintValueFnLeft  = getVectorBigintValueFn(pLeftCol->info.type);
  _getBigintValue_fn_t getVectorBigintValueFnRight = getVectorBigintValueFn(pRightCol->info.type);
D
dapan 已提交
1609

1610 1611 1612
  int64_t *output = (int64_t *)pOutputCol->pData;
  if (pLeft->numOfRows == pRight->numOfRows) {
    for (; i < pRight->numOfRows && i >= 0; i += step, output += 1) {
wmmhello's avatar
wmmhello 已提交
1613
      if (IS_NULL) {
1614 1615 1616 1617
        colDataAppendNULL(pOutputCol, i);
        continue;  // TODO set null or ignore
      }
      *output = getVectorBigintValueFnLeft(LEFT_COL, i) | getVectorBigintValueFnRight(RIGHT_COL, i);
1618 1619 1620 1621 1622
    }
  } else if (pLeft->numOfRows == 1) {
    vectorBitOrHelper(pRightCol, pLeftCol, pOutputCol, pRight->numOfRows, step, i);
  } else if (pRight->numOfRows == 1) {
    vectorBitOrHelper(pLeftCol, pRightCol, pOutputCol, pLeft->numOfRows, step, i);
D
dapan1121 已提交
1623
  }
H
Haojun Liao 已提交
1624 1625 1626

  doReleaseVec(pLeftCol,  leftConvert);
  doReleaseVec(pRightCol, rightConvert);
D
dapan1121 已提交
1627 1628
}

D
dapan1121 已提交
1629 1630
int32_t doVectorCompareImpl(SScalarParam *pLeft, SScalarParam *pRight, SScalarParam *pOut, int32_t startIndex, int32_t numOfRows, 
                             int32_t step, __compar_fn_t fp, int32_t optr) {
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677
  int32_t num = 0;

  for (int32_t i = startIndex; i < numOfRows && i >= 0; i += step) {
    int32_t leftIndex = (i >= pLeft->numOfRows)? 0:i;
    int32_t rightIndex = (i >= pRight->numOfRows)? 0:i;

    if (IS_HELPER_NULL(pLeft->columnData, leftIndex) || IS_HELPER_NULL(pRight->columnData, rightIndex)) {
      bool res = false;
      colDataAppendInt8(pOut->columnData, i, (int8_t *)&res);
      continue;
    }

    char *  pLeftData = colDataGetData(pLeft->columnData, leftIndex);
    char *  pRightData = colDataGetData(pRight->columnData, rightIndex);
    int64_t leftOut = 0;
    int64_t rightOut = 0;
    bool    freeLeft = false;
    bool    freeRight = false;
    bool    isJsonnull = false;

    bool    result = convertJsonValue(&fp, optr, GET_PARAM_TYPE(pLeft), GET_PARAM_TYPE(pRight), &pLeftData, &pRightData,
                                   &leftOut, &rightOut, &isJsonnull, &freeLeft, &freeRight);
    if (isJsonnull) {
      ASSERT(0);
    }

    if (!pLeftData || !pRightData) {
      result = false;
    }

    if (!result) {
      colDataAppendInt8(pOut->columnData, i, (int8_t *)&result);
    } else {
      bool res = filterDoCompare(fp, optr, pLeftData, pRightData);
      colDataAppendInt8(pOut->columnData, i, (int8_t *)&res);
      if (res) {
        ++num;
      }
    }

    if (freeLeft) {
      taosMemoryFreeClear(pLeftData);
    }

    if (freeRight) {
      taosMemoryFreeClear(pRightData);
    }
1678 1679
  }

1680 1681 1682
  return num;
}

D
dapan1121 已提交
1683 1684 1685
void doVectorCompare(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t startIndex, int32_t numOfRows, 
                          int32_t _ord, int32_t optr) {
  int32_t       i = 0;
1686
  int32_t       step = ((_ord) == TSDB_ORDER_ASC) ? 1 : -1;
D
dapan1121 已提交
1687 1688 1689
  int32_t       lType = GET_PARAM_TYPE(pLeft);
  int32_t       rType = GET_PARAM_TYPE(pRight);
  __compar_fn_t fp = NULL;
D
dapan1121 已提交
1690
  int32_t       compRows = 0;
D
dapan1121 已提交
1691 1692 1693 1694 1695
  
  if (lType == rType) {
    fp = filterGetCompFunc(lType, optr);
  } else {
    fp = filterGetCompFuncEx(lType, rType, optr);
wmmhello's avatar
wmmhello 已提交
1696
  }
1697

D
dapan1121 已提交
1698 1699
  if (startIndex < 0) {
    i = ((_ord) == TSDB_ORDER_ASC) ? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
D
dapan1121 已提交
1700
    pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);
D
dapan1121 已提交
1701 1702 1703 1704 1705 1706
    compRows = pOut->numOfRows;
  } else {
    compRows = startIndex + numOfRows;
    i = startIndex;
  }

1707 1708
  if (pRight->pHashFilter != NULL) {
    for (; i >= 0 && i < pLeft->numOfRows; i += step) {
wmmhello's avatar
wmmhello 已提交
1709
      if (IS_HELPER_NULL(pLeft->columnData, i)) {
D
dapan1121 已提交
1710 1711
        bool  res = false;
        colDataAppendInt8(pOut->columnData, i, (int8_t*)&res);
D
dapan1121 已提交
1712 1713 1714
        continue;
      }

1715 1716
      char *pLeftData = colDataGetData(pLeft->columnData, i);
      bool  res = filterDoCompare(fp, optr, pLeftData, pRight->pHashFilter);
1717
      colDataAppendInt8(pOut->columnData, i, (int8_t*)&res);
1718 1719 1720
      if (res) {
        pOut->numOfQualified++;
      }
1721
    }
1722
  } else {  // normal compare
D
dapan1121 已提交
1723
    pOut->numOfQualified = doVectorCompareImpl(pLeft, pRight, pOut, i, compRows, step, fp, optr);
D
dapan1121 已提交
1724 1725 1726
  }
}

D
dapan1121 已提交
1727 1728
void vectorCompareImpl(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t startIndex, int32_t numOfRows, 
                             int32_t _ord, int32_t optr) {
D
dapan1121 已提交
1729 1730 1731 1732
  SScalarParam pLeftOut = {0}; 
  SScalarParam pRightOut = {0};
  SScalarParam *param1 = NULL; 
  SScalarParam *param2 = NULL;
D
dapan1121 已提交
1733

D
dapan1121 已提交
1734
  if (SCL_NO_NEED_CONVERT_COMPARISION(GET_PARAM_TYPE(pLeft), GET_PARAM_TYPE(pRight), optr)) {
D
dapan1121 已提交
1735 1736
    param1 = pLeft;
    param2 = pRight;
D
dapan1121 已提交
1737
  } else {
D
dapan1121 已提交
1738
    vectorConvertCols(pLeft, pRight, &pLeftOut, &pRightOut, startIndex, numOfRows);
D
dapan1121 已提交
1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750

    if (pLeftOut.columnData != NULL) {
      param1 = &pLeftOut;
    } else {
      param1 = pLeft;
    }

    if (pRightOut.columnData != NULL) {
      param2 = &pRightOut;
    } else {
      param2 = pRight;
    }
D
dapan1121 已提交
1751 1752
  }

D
dapan1121 已提交
1753
  doVectorCompare(param1, param2, pOut, startIndex, numOfRows, _ord, optr);
D
dapan1121 已提交
1754
  
D
dapan1121 已提交
1755 1756
  sclFreeParam(&pLeftOut);
  sclFreeParam(&pRightOut);  
D
dapan1121 已提交
1757 1758
}

D
dapan1121 已提交
1759 1760 1761 1762
void vectorCompare(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord, int32_t optr) {
  vectorCompareImpl(pLeft, pRight, pOut, -1, -1, _ord, optr);
}

D
dapan 已提交
1763 1764
void vectorGreater(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_GREATER_THAN);
D
dapan1121 已提交
1765 1766
}

D
dapan 已提交
1767 1768
void vectorGreaterEqual(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_GREATER_EQUAL);
D
dapan1121 已提交
1769 1770
}

D
dapan 已提交
1771 1772
void vectorLower(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_LOWER_THAN);
D
dapan1121 已提交
1773 1774
}

D
dapan 已提交
1775 1776
void vectorLowerEqual(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_LOWER_EQUAL);
D
dapan1121 已提交
1777 1778
}

D
dapan 已提交
1779 1780
void vectorEqual(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_EQUAL);
D
dapan1121 已提交
1781 1782
}

D
dapan 已提交
1783 1784
void vectorNotEqual(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_NOT_EQUAL);
D
dapan1121 已提交
1785 1786
}

D
dapan 已提交
1787 1788
void vectorIn(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_IN);
D
dapan1121 已提交
1789 1790
}

D
dapan 已提交
1791 1792
void vectorNotIn(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_NOT_IN);
D
dapan1121 已提交
1793 1794
}

D
dapan 已提交
1795 1796
void vectorLike(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_LIKE);
D
dapan1121 已提交
1797 1798
}

D
dapan 已提交
1799 1800
void vectorNotLike(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_NOT_LIKE);
D
dapan1121 已提交
1801 1802
}

D
dapan 已提交
1803 1804
void vectorMatch(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_MATCH);
D
dapan1121 已提交
1805 1806
}

D
dapan 已提交
1807 1808
void vectorNotMatch(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  vectorCompare(pLeft, pRight, pOut, _ord, OP_TYPE_NMATCH);
D
dapan1121 已提交
1809 1810
}

D
dapan 已提交
1811
void vectorIsNull(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
1812
  for(int32_t i = 0; i < pLeft->numOfRows; ++i) {
wmmhello's avatar
wmmhello 已提交
1813
    int8_t v = IS_HELPER_NULL(pLeft->columnData, i) ? 1 : 0;
1814
    colDataAppendInt8(pOut->columnData, i, &v);
D
dapan1121 已提交
1815
  }
1816
  pOut->numOfRows = pLeft->numOfRows;
D
dapan1121 已提交
1817 1818
}

D
dapan 已提交
1819
void vectorNotNull(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
1820
  for(int32_t i = 0; i < pLeft->numOfRows; ++i) {
wmmhello's avatar
wmmhello 已提交
1821
    int8_t v = IS_HELPER_NULL(pLeft->columnData, i) ? 0 : 1;
1822
    colDataAppendInt8(pOut->columnData, i, &v);
D
dapan1121 已提交
1823
  }
1824
  pOut->numOfRows = pLeft->numOfRows;
D
dapan 已提交
1825
}
D
dapan1121 已提交
1826

D
dapan 已提交
1827
void vectorIsTrue(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
D
dapan1121 已提交
1828
  vectorConvertSingleColImpl(pLeft, pOut, NULL, -1, -1);
1829 1830 1831 1832 1833 1834 1835 1836
  for(int32_t i = 0; i < pOut->numOfRows; ++i) {
    if(colDataIsNull_s(pOut->columnData, i)) {
      int8_t v = 0;
      colDataAppendInt8(pOut->columnData, i, &v);
      colDataSetNotNull_f(pOut->columnData->nullbitmap, i);
    }
  }
  pOut->columnData->hasNull = false;
D
dapan1121 已提交
1837 1838
}

1839 1840
STagVal getJsonValue(char *json, char *key, bool *isExist) {
  STagVal val = {.pKey = key};
wmmhello's avatar
wmmhello 已提交
1841
  if (tTagIsJson((const STag *)json) == false){
wmmhello's avatar
wmmhello 已提交
1842
    terrno = TSDB_CODE_QRY_JSON_NOT_SUPPORT_ERROR;
wmmhello's avatar
wmmhello 已提交
1843 1844 1845 1846 1847 1848
    if(isExist){
      *isExist = false;
    }
    return val;
  }

1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
  bool find = tTagGet(((const STag *)json), &val);  // json value is null and not exist is different
  if(isExist){
    *isExist = find;
  }
  return val;
}

void vectorJsonContains(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;

  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;

  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);

  char *pRightData = colDataGetVarData(pRight->columnData, 0);
  char *jsonKey = taosMemoryCalloc(1, varDataLen(pRightData) + 1);
  memcpy(jsonKey, varDataVal(pRightData), varDataLen(pRightData));
  for (; i >= 0 && i < pLeft->numOfRows; i += step) {
    bool isExist = false;

    if (!colDataIsNull_var(pLeft->columnData, i)) {
      char *pLeftData = colDataGetVarData(pLeft->columnData, i);
      getJsonValue(pLeftData, jsonKey, &isExist);
    }

    colDataAppend(pOutputCol, i, (const char*)(&isExist), false);

  }
  taosMemoryFree(jsonKey);
}

void vectorJsonArrow(SScalarParam* pLeft, SScalarParam* pRight, SScalarParam *pOut, int32_t _ord) {
  SColumnInfoData *pOutputCol = pOut->columnData;

  int32_t i = ((_ord) == TSDB_ORDER_ASC)? 0 : TMAX(pLeft->numOfRows, pRight->numOfRows) - 1;
  int32_t step = ((_ord) == TSDB_ORDER_ASC)? 1 : -1;

  pOut->numOfRows = TMAX(pLeft->numOfRows, pRight->numOfRows);

  char *pRightData = colDataGetVarData(pRight->columnData, 0);
  char *jsonKey = taosMemoryCalloc(1, varDataLen(pRightData) + 1);
  memcpy(jsonKey, varDataVal(pRightData), varDataLen(pRightData));
  for (; i >= 0 && i < pLeft->numOfRows; i += step) {
    if (colDataIsNull_var(pLeft->columnData, i)) {
      colDataSetNull_var(pOutputCol, i);
      pOutputCol->hasNull = true;
      continue;
    }
    char *pLeftData = colDataGetVarData(pLeft->columnData, i);
    bool isExist = false;
    STagVal value = getJsonValue(pLeftData, jsonKey, &isExist);
    char *data = isExist ? tTagValToData(&value, true) : NULL;
    colDataAppend(pOutputCol, i, data, data == NULL);
    if(isExist && IS_VAR_DATA_TYPE(value.type) && data){
      taosMemoryFree(data);
    }
  }
  taosMemoryFree(jsonKey);
}

1910 1911
_bin_scalar_fn_t getBinScalarOperatorFn(int32_t binFunctionId) {
  switch (binFunctionId) {
D
dapan1121 已提交
1912
    case OP_TYPE_ADD:
1913
      return vectorMathAdd;
D
dapan1121 已提交
1914
    case OP_TYPE_SUB:
1915
      return vectorMathSub;
D
dapan1121 已提交
1916
    case OP_TYPE_MULTI:
1917
      return vectorMathMultiply;
D
dapan1121 已提交
1918
    case OP_TYPE_DIV:
1919
      return vectorMathDivide;
1920
    case OP_TYPE_REM:
1921
      return vectorMathRemainder;
D
dapan1121 已提交
1922 1923
    case OP_TYPE_MINUS:
      return vectorMathMinus;
D
dapan1121 已提交
1924 1925
    case OP_TYPE_ASSIGN:
      return vectorAssign;
D
dapan1121 已提交
1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
    case OP_TYPE_GREATER_THAN:
      return vectorGreater;
    case OP_TYPE_GREATER_EQUAL:
      return vectorGreaterEqual;
    case OP_TYPE_LOWER_THAN:
      return vectorLower;
    case OP_TYPE_LOWER_EQUAL:
      return vectorLowerEqual;
    case OP_TYPE_EQUAL:
      return vectorEqual;
    case OP_TYPE_NOT_EQUAL:
      return vectorNotEqual;
    case OP_TYPE_IN:
      return vectorIn;
    case OP_TYPE_NOT_IN:
      return vectorNotIn;
    case OP_TYPE_LIKE:
      return vectorLike;
    case OP_TYPE_NOT_LIKE:
      return vectorNotLike;
    case OP_TYPE_MATCH:
      return vectorMatch;
    case OP_TYPE_NMATCH:
      return vectorNotMatch;
D
dapan1121 已提交
1950
    case OP_TYPE_IS_NULL:
D
dapan1121 已提交
1951
      return vectorIsNull;
D
dapan1121 已提交
1952
    case OP_TYPE_IS_NOT_NULL:
D
dapan1121 已提交
1953 1954 1955 1956 1957
      return vectorNotNull;
    case OP_TYPE_BIT_AND:
      return vectorBitAnd;
    case OP_TYPE_BIT_OR:
      return vectorBitOr;
D
dapan1121 已提交
1958 1959
    case OP_TYPE_IS_TRUE:
      return vectorIsTrue;
1960 1961 1962 1963
    case OP_TYPE_JSON_GET_VALUE:
      return vectorJsonArrow;
    case OP_TYPE_JSON_CONTAINS:
      return vectorJsonContains;
1964
    default:
1965
      ASSERT(0);
1966 1967
      return NULL;
  }
D
dapan1121 已提交
1968
}
1969