Skip to content

Commit

Permalink
Merge pull request #16395 from taosdata/szhou/save-op-state
Browse files Browse the repository at this point in the history
fix: support window pseduo column _wstart,_wend,_wduration for fill operator
  • Loading branch information
guanshengliang committed Aug 25, 2022
2 parents e971af4 + d059ace commit 689caa1
Show file tree
Hide file tree
Showing 7 changed files with 156 additions and 135 deletions.
2 changes: 1 addition & 1 deletion include/common/tcommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ typedef struct SColumn {
int16_t slotId;

char name[TSDB_COL_NAME_LEN];
int8_t flag; // column type: normal column, tag, or user-input column (integer/float/string)
int16_t colType; // column type: normal column, tag, or window column
int16_t type;
int32_t bytes;
uint8_t precision;
Expand Down
4 changes: 3 additions & 1 deletion include/libs/nodes/querynodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ typedef enum EColumnType {
COLUMN_TYPE_COLUMN = 1,
COLUMN_TYPE_TAG,
COLUMN_TYPE_TBNAME,
COLUMN_TYPE_WINDOW_PC,
COLUMN_TYPE_WINDOW_START,
COLUMN_TYPE_WINDOW_END,
COLUMN_TYPE_WINDOW_DURATION,
COLUMN_TYPE_GROUP_KEY
} EColumnType;

Expand Down
Loading

0 comments on commit 689caa1

Please sign in to comment.