This commit is contained in:
Hongze Cheng 2022-03-09 09:10:21 +00:00
parent ea7b4dcc53
commit 8d23a257b8
1 changed files with 10 additions and 0 deletions

View File

@ -24,3 +24,13 @@ int tdbPageDropCell(SPage *pPage, int idx) {
// TODO // TODO
return 0; return 0;
} }
static int tdbPageAllocate(SPage *pPage, int size, SCell **ppCell) {
// TODO
return 0;
}
static int tdbPageFree(SPage *pPage, int idx, SCell *pCell) {
// TODO
return 0;
}