name.h 526 字节
Newer Older
H
hjxilinx 已提交
1 2 3
#ifndef TDENGINE_NAME_H
#define TDENGINE_NAME_H

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#include "os.h"
#include "taosmsg.h"

typedef struct SDataStatis {
  int16_t colId;
  int64_t sum;
  int64_t max;
  int64_t min;
  int16_t maxIndex;
  int16_t minIndex;
  int16_t numOfNull;
} SDataStatis;

typedef struct SColumnInfoEx {
  SColumnInfo info;
  void* pData;    // the corresponding block data in memory
} SColumnInfoEx;

H
hjxilinx 已提交
22 23 24 25 26
int32_t extractTableName(const char *tableId, char *name);

char* extractDBName(const char *tableId, char *name);

#endif  // TDENGINE_NAME_H