TD-34
This commit is contained in:
parent
69f7437e52
commit
40dfd72695
|
@ -247,10 +247,6 @@ int32_t tsdbCreateTableImpl(STsdbMeta *pMeta, STableCfg *pCfg) {
|
||||||
table->type = TSDB_NORMAL_TABLE;
|
table->type = TSDB_NORMAL_TABLE;
|
||||||
table->superUid = -1;
|
table->superUid = -1;
|
||||||
table->schema = tdDupSchema(pCfg->schema);
|
table->schema = tdDupSchema(pCfg->schema);
|
||||||
if (schemaNCols(table->schema) > pMeta->maxCols) pMeta->maxCols = schemaNCols(table->schema);
|
|
||||||
tdUpdateSchema(table->schema);
|
|
||||||
int bytes = tdMaxRowBytesFromSchema(table->schema);
|
|
||||||
if (bytes > pMeta->maxRowBytes) pMeta->maxRowBytes = bytes;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Register to meta
|
// Register to meta
|
||||||
|
@ -367,6 +363,14 @@ static int tsdbAddTableToMeta(STsdbMeta *pMeta, STable *pTable, bool addIdx) {
|
||||||
pMeta->nTables++;
|
pMeta->nTables++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update the pMeta->maxCols and pMeta->maxRowBytes
|
||||||
|
if (pTable->type == TSDB_SUPER_TABLE || pTable->type == TSDB_NORMAL_TABLE) {
|
||||||
|
if (schemaNCols(pTable->schema) > pMeta->maxCols) pMeta->maxCols = schemaNCols(pTable->schema);
|
||||||
|
int bytes = tdMaxRowBytesFromSchema(pTable->schema);
|
||||||
|
if (bytes > pMeta->maxRowBytes) pMeta->maxRowBytes = bytes;
|
||||||
|
tdUpdateSchema(pTable->schema);
|
||||||
|
}
|
||||||
|
|
||||||
return tsdbAddTableIntoMap(pMeta, pTable);
|
return tsdbAddTableIntoMap(pMeta, pTable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,8 +47,8 @@ TEST(TsdbTest, DISABLED_tableEncodeDecode) {
|
||||||
ASSERT_EQ(memcmp(pTable->schema, tTable->schema, sizeof(STSchema) + sizeof(STColumn) * nCols), 0);
|
ASSERT_EQ(memcmp(pTable->schema, tTable->schema, sizeof(STSchema) + sizeof(STColumn) * nCols), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TEST(TsdbTest, DISABLED_createRepo) {
|
TEST(TsdbTest, DISABLED_createRepo) {
|
||||||
TEST(TsdbTest, createRepo) {
|
// TEST(TsdbTest, createRepo) {
|
||||||
STsdbCfg config;
|
STsdbCfg config;
|
||||||
|
|
||||||
// 1. Create a tsdb repository
|
// 1. Create a tsdb repository
|
||||||
|
@ -139,12 +139,12 @@ TEST(TsdbTest, createRepo) {
|
||||||
|
|
||||||
// TEST(TsdbTest, DISABLED_openRepo) {
|
// TEST(TsdbTest, DISABLED_openRepo) {
|
||||||
TEST(TsdbTest, openRepo) {
|
TEST(TsdbTest, openRepo) {
|
||||||
tsdb_repo_t *repo = tsdbOpenRepo("/home/ubuntu/work/ttest/vnode0");
|
tsdb_repo_t *repo = tsdbOpenRepo("/home/ubuntu/work/build/test/data/vnode/vnode1/tsdb");
|
||||||
ASSERT_NE(repo, nullptr);
|
ASSERT_NE(repo, nullptr);
|
||||||
|
|
||||||
STsdbRepo *pRepo = (STsdbRepo *)repo;
|
STsdbRepo *pRepo = (STsdbRepo *)repo;
|
||||||
|
|
||||||
SFileGroup *pGroup = tsdbSearchFGroup(pRepo->tsdbFileH, 1833);
|
SFileGroup *pGroup = tsdbSearchFGroup(pRepo->tsdbFileH, 1835);
|
||||||
|
|
||||||
for (int type = TSDB_FILE_TYPE_HEAD; type < TSDB_FILE_TYPE_MAX; type++) {
|
for (int type = TSDB_FILE_TYPE_HEAD; type < TSDB_FILE_TYPE_MAX; type++) {
|
||||||
tsdbOpenFile(&pGroup->files[type], O_RDONLY);
|
tsdbOpenFile(&pGroup->files[type], O_RDONLY);
|
||||||
|
@ -153,9 +153,9 @@ TEST(TsdbTest, openRepo) {
|
||||||
SCompIdx *pIdx = (SCompIdx *)calloc(pRepo->config.maxTables, sizeof(SCompIdx));
|
SCompIdx *pIdx = (SCompIdx *)calloc(pRepo->config.maxTables, sizeof(SCompIdx));
|
||||||
tsdbLoadCompIdx(pGroup, (void *)pIdx, pRepo->config.maxTables);
|
tsdbLoadCompIdx(pGroup, (void *)pIdx, pRepo->config.maxTables);
|
||||||
|
|
||||||
SCompInfo *pCompInfo = (SCompInfo *)malloc(sizeof(SCompInfo) + pIdx[0].len);
|
SCompInfo *pCompInfo = (SCompInfo *)malloc(sizeof(SCompInfo) + pIdx[1].len);
|
||||||
|
|
||||||
tsdbLoadCompBlocks(pGroup, pIdx, (void *)pCompInfo);
|
tsdbLoadCompBlocks(pGroup, &pIdx[1], (void *)pCompInfo);
|
||||||
|
|
||||||
int k = 0;
|
int k = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue