Skip to content

Commit 06b97b3

Browse files
committed
odb: fix dbDatabase schema naming
Signed-off-by: Matt Liberty <[email protected]>
1 parent 618077d commit 06b97b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/odb/src/codeGenerator/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@
455455
"parent":"dbDatabase",
456456
"child":"dbProperty",
457457
"type":"1_n",
458-
"tbl_name":"_prop_tbl",
458+
"tbl_name":"prop_tbl_",
459459
"flags": ["no-serial"]
460460
},
461461
{

src/odb/src/db/dbDatabase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ void _dbDatabase::collectMemInfo(MemInfo& info)
398398

399399
chip_tbl_->collectMemInfo(info.children["chip_tbl_"]);
400400

401-
prop_tbl_->collectMemInfo(info.children["_prop_tbl"]);
401+
prop_tbl_->collectMemInfo(info.children["prop_tbl_"]);
402402

403403
chip_inst_tbl_->collectMemInfo(info.children["chip_inst_tbl_"]);
404404

0 commit comments

Comments
 (0)