Skip to content

Commit 19508d1

Browse files
authored
Merge pull request #19817 from taosdata/feat/TS-2502
feat: support force fill in interval clause
2 parents 64aff02 + ded47e1 commit 19508d1

File tree

15 files changed

+3779
-2677
lines changed

15 files changed

+3779
-2677
lines changed

include/common/tmsg.h

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,14 @@ typedef enum _mgmt_table {
144144
#define TSDB_ALTER_TABLE_UPDATE_OPTIONS 9
145145
#define TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME 10
146146

147-
#define TSDB_FILL_NONE 0
148-
#define TSDB_FILL_NULL 1
149-
#define TSDB_FILL_SET_VALUE 2
150-
#define TSDB_FILL_LINEAR 3
151-
#define TSDB_FILL_PREV 4
152-
#define TSDB_FILL_NEXT 5
147+
#define TSDB_FILL_NONE 0
148+
#define TSDB_FILL_NULL 1
149+
#define TSDB_FILL_NULL_F 2
150+
#define TSDB_FILL_SET_VALUE 3
151+
#define TSDB_FILL_SET_VALUE_F 4
152+
#define TSDB_FILL_LINEAR 5
153+
#define TSDB_FILL_PREV 6
154+
#define TSDB_FILL_NEXT 7
153155

154156
#define TSDB_ALTER_USER_PASSWD 0x1
155157
#define TSDB_ALTER_USER_SUPERUSER 0x2

0 commit comments

Comments
 (0)