提交 61cd3ff9 编写于 作者: H Haojun Liao

[td-225]refactor

上级 d1d6b192
......@@ -240,6 +240,7 @@ typedef struct SQuery {
typedef struct SQueryRuntimeEnv {
jmp_buf env;
SQuery* pQuery;
void* qinfo;
SQLFunctionCtx* pCtx;
int32_t numOfRowsPerPage;
......@@ -267,14 +268,18 @@ typedef struct SQueryRuntimeEnv {
SArithmeticSupport *sasArray;
struct STableScanInfo* pi;
SSDataBlock *ouptputBuf;
SSDataBlock *outputBuf;
int32_t groupIndex;
int32_t tableIndex;
STableGroupInfo tableqinfoGroupInfo; // this is a group array list, including SArray<STableQueryInfo*> structure
} SQueryRuntimeEnv;
typedef struct {
char* name;
void* info;
} SQEStage;
enum {
QUERY_RESULT_NOT_READY = 1,
QUERY_RESULT_READY = 2,
......@@ -325,7 +330,7 @@ typedef struct SQueryParam {
} SQueryParam;
typedef struct STableScanInfo {
SQInfo* pQInfo;
SQueryRuntimeEnv* pRuntimeEnv;
void *pQueryHandle;
int32_t numOfBlocks;
int32_t numOfSkipped;
......@@ -341,7 +346,7 @@ typedef struct STableScanInfo {
SSDataBlock block;
int64_t elapsedTime;
SSDataBlock* (*apply)(void* param);
SSDataBlock* (*exec)(void* param);
} STableScanInfo;
typedef struct SAggOperatorInfo {
......
......@@ -45,7 +45,7 @@ typedef struct SLimitVal {
typedef struct SOrderVal {
uint32_t order;
int32_t orderColId;
int32_t orderColId;
} SOrderVal;
typedef struct tVariantListItem {
......
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册