[TD-4034]fix Data column ts type

This commit is contained in:
lichuang 2021-05-20 13:35:06 +08:00
parent c83a8a9c33
commit 61b2473bf9
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ typedef struct SDataCol {
int len; // column data length
VarDataOffsetT *dataOff; // For binary and nchar data, the offset in the data column
void * pData; // Actual data pointer
TSKEY ts; // only used in last NULL column
TKEY ts; // only used in last NULL column
} SDataCol;
static FORCE_INLINE void dataColReset(SDataCol *pDataCol) { pDataCol->len = 0; }