fix: fix syntax error.
This commit is contained in:
parent
f203c7806d
commit
a566180770
|
@ -86,7 +86,7 @@ typedef struct SMetaReader {
|
|||
} SMetaReader;
|
||||
|
||||
typedef struct SMTbCursor {
|
||||
struct TBC *pDbc;
|
||||
void * pDbc;
|
||||
void * pKey;
|
||||
void * pVal;
|
||||
int32_t kLen;
|
||||
|
@ -169,7 +169,7 @@ typedef struct SMetaTableInfo {
|
|||
typedef struct SSnapContext {
|
||||
SMeta * pMeta; // todo remove it
|
||||
int64_t snapVersion;
|
||||
struct TBC *pCur;
|
||||
void * pCur;
|
||||
int64_t suid;
|
||||
int8_t subType;
|
||||
SHashObj * idVersion;
|
||||
|
|
|
@ -10,7 +10,7 @@ ADD_EXECUTABLE(streamUpdateTest "tstreamUpdateTest.cpp")
|
|||
|
||||
TARGET_LINK_LIBRARIES(
|
||||
streamUpdateTest
|
||||
PUBLIC os util common gtest gtest_main stream
|
||||
PUBLIC os util common gtest gtest_main stream executor
|
||||
)
|
||||
|
||||
TARGET_INCLUDE_DIRECTORIES(
|
||||
|
|
Loading…
Reference in New Issue