make compile
This commit is contained in:
parent
e0778e5646
commit
48e7becedf
|
@ -42,9 +42,9 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int32_t vgId;
|
int32_t vgId;
|
||||||
int64_t dbId;
|
uint64_t dbId;
|
||||||
SDnode * pDnode;
|
SDnode *pDnode;
|
||||||
STfs * pTfs;
|
STfs *pTfs;
|
||||||
uint64_t wsize;
|
uint64_t wsize;
|
||||||
uint64_t ssize;
|
uint64_t ssize;
|
||||||
uint64_t lsize;
|
uint64_t lsize;
|
||||||
|
@ -61,9 +61,9 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int32_t sver;
|
int32_t sver;
|
||||||
const char * timezone;
|
const char *timezone;
|
||||||
const char * locale;
|
const char *locale;
|
||||||
const char * charset;
|
const char *charset;
|
||||||
uint16_t nthreads; // number of commit threads. 0 for no threads and a schedule queue should be given (TODO)
|
uint16_t nthreads; // number of commit threads. 0 for no threads and a schedule queue should be given (TODO)
|
||||||
PutReqToVQueryQFp putReqToVQueryQFp;
|
PutReqToVQueryQFp putReqToVQueryQFp;
|
||||||
SendReqToDnodeFp sendReqToDnodeFp;
|
SendReqToDnodeFp sendReqToDnodeFp;
|
||||||
|
@ -71,17 +71,17 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int64_t ver;
|
int64_t ver;
|
||||||
uint64_t tbUid;
|
int64_t tbUid;
|
||||||
SHashObj * tbIdHash;
|
SHashObj *tbIdHash;
|
||||||
const SSubmitMsg *pMsg;
|
const SSubmitReq *pMsg;
|
||||||
SSubmitBlk * pBlock;
|
SSubmitBlk *pBlock;
|
||||||
SSubmitMsgIter msgIter;
|
SSubmitMsgIter msgIter;
|
||||||
SSubmitBlkIter blkIter;
|
SSubmitBlkIter blkIter;
|
||||||
SMeta * pVnodeMeta;
|
SMeta *pVnodeMeta;
|
||||||
SArray * pColIdList; // SArray<int32_t>
|
SArray *pColIdList; // SArray<int32_t>
|
||||||
int32_t sver;
|
int32_t sver;
|
||||||
SSchemaWrapper * pSchemaWrapper;
|
SSchemaWrapper *pSchemaWrapper;
|
||||||
STSchema * pSchema;
|
STSchema *pSchema;
|
||||||
} STqReadHandle;
|
} STqReadHandle;
|
||||||
|
|
||||||
/* ------------------------ SVnode ------------------------ */
|
/* ------------------------ SVnode ------------------------ */
|
||||||
|
|
Loading…
Reference in New Issue