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

@ -23,4 +23,14 @@ int tdbPageInsertCell(SPage *pPage, int idx, SCell *pCell, int szCell) {
int tdbPageDropCell(SPage *pPage, int idx) {
// TODO
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;
}