fix(query): fix syntax error.

This commit is contained in:
Haojun Liao 2022-06-18 09:35:30 +08:00
parent 820d6d1332
commit 2cf8e30241
2 changed files with 1 additions and 8 deletions

View File

@ -128,9 +128,6 @@ typedef struct STaskAttr {
SLimit limit; SLimit limit;
SLimit slimit; SLimit slimit;
bool stableQuery; // super table query or not bool stableQuery; // super table query or not
bool topBotQuery; // TODO used bitwise flag
bool groupbyColumn; // denote if this is a groupby normal column query
bool timeWindowInterpo; // if the time window start/end required interpolation
bool tsCompQuery; // is tscomp query bool tsCompQuery; // is tscomp query
bool diffQuery; // is diff query bool diffQuery; // is diff query
bool pointInterpQuery; // point interpolation query bool pointInterpQuery; // point interpolation query
@ -439,7 +436,7 @@ typedef struct SAggSupporter {
SHashObj* pResultRowHashTable; // quick locate the window object for each result SHashObj* pResultRowHashTable; // quick locate the window object for each result
char* keyBuf; // window key buffer char* keyBuf; // window key buffer
SDiskbasedBuf* pResultBuf; // query result buffer based on blocked-wised disk file SDiskbasedBuf* pResultBuf; // query result buffer based on blocked-wised disk file
int32_t resultRowSize; // the result buffer size for each result row, with the meta data size for each row, todo remove it int32_t resultRowSize; // the result buffer size for each result row, with the meta data size for each row
} SAggSupporter; } SAggSupporter;
typedef struct STimeWindowSupp { typedef struct STimeWindowSupp {

View File

@ -885,10 +885,6 @@ static bool isCachedLastQuery(STaskAttr* pQueryAttr) {
return false; return false;
} }
if (pQueryAttr->groupbyColumn) {
return false;
}
if (pQueryAttr->interval.interval > 0) { if (pQueryAttr->interval.interval > 0) {
return false; return false;
} }