fix:[TS-3922] make SStreamObj->->currentTick aligned by 8
This commit is contained in:
parent
fdeb924d0d
commit
c4898bffd8
|
@ -664,9 +664,15 @@ typedef struct SStreamConf {
|
||||||
} SStreamConf;
|
} SStreamConf;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char name[TSDB_STREAM_FNAME_LEN];
|
|
||||||
// ctl
|
// ctl
|
||||||
SRWLatch lock;
|
SRWLatch lock;
|
||||||
|
|
||||||
|
// 3.0.20
|
||||||
|
int64_t checkpointFreq; // ms
|
||||||
|
int64_t currentTick; // do not serialize
|
||||||
|
int64_t deleteMark;
|
||||||
|
int8_t igCheckUpdate;
|
||||||
|
|
||||||
// create info
|
// create info
|
||||||
int64_t createTime;
|
int64_t createTime;
|
||||||
int64_t updateTime;
|
int64_t updateTime;
|
||||||
|
@ -701,11 +707,7 @@ typedef struct {
|
||||||
SSchemaWrapper outputSchema;
|
SSchemaWrapper outputSchema;
|
||||||
SSchemaWrapper tagSchema;
|
SSchemaWrapper tagSchema;
|
||||||
|
|
||||||
// 3.0.20
|
char name[TSDB_STREAM_FNAME_LEN];
|
||||||
int64_t checkpointFreq; // ms
|
|
||||||
int64_t currentTick; // do not serialize
|
|
||||||
int64_t deleteMark;
|
|
||||||
int8_t igCheckUpdate;
|
|
||||||
|
|
||||||
// 3.0.5.
|
// 3.0.5.
|
||||||
int64_t checkpointId;
|
int64_t checkpointId;
|
||||||
|
|
Loading…
Reference in New Issue