This commit is contained in:
Haojun Liao 2020-09-28 22:57:06 +08:00
parent 26e708bc0b
commit db66a5da57
2 changed files with 4 additions and 4 deletions

View File

@ -229,7 +229,6 @@ typedef struct SQueryInfo {
// TODO refactor
STimeWindow window; // query time window
SInterval interval;
int32_t tz; // query client timezone
SSqlGroupbyExpr groupbyExpr; // group by tags info
SArray * colList; // SArray<SColumn*>

View File

@ -63,9 +63,10 @@ static FORCE_INLINE int64_t taosGetTimestamp(int32_t precision) {
typedef struct SInterval {
char intervalUnit;
char slidingUnit;
char offsetUnit;
int32_t tz; // query client timezone
char intervalUnit;
char slidingUnit;
char offsetUnit;
int64_t interval;
int64_t sliding;
int64_t offset;