[TD-2293]add parameters in query message.
This commit is contained in:
parent
5746fdabe7
commit
6b2d676ac1
|
@ -476,6 +476,8 @@ typedef struct {
|
|||
int16_t numOfGroupCols; // num of group by columns
|
||||
int16_t orderByIdx;
|
||||
int16_t orderType; // used in group by xx order by xxx
|
||||
int64_t tableLimit; // limit the number of rows for each table, used in order by + limit in stable projection query.
|
||||
int16_t prjOrder; // global order in super table projection query.
|
||||
int64_t limit;
|
||||
int64_t offset;
|
||||
uint32_t queryType; // denote another query process
|
||||
|
|
|
@ -5500,7 +5500,7 @@ static void sequentialTableProcess(SQInfo *pQInfo) {
|
|||
|
||||
uint32_t status = 0;
|
||||
SDataStatis *pStatis = NULL;
|
||||
SArray * pDataBlock = NULL;
|
||||
SArray *pDataBlock = NULL;
|
||||
|
||||
int32_t ret = loadDataBlockOnDemand(pRuntimeEnv, &pQuery->current->windowResInfo, pQueryHandle, &blockInfo,
|
||||
&pStatis, &pDataBlock, &status);
|
||||
|
|
Loading…
Reference in New Issue