more TDB
This commit is contained in:
parent
ea7b4dcc53
commit
8d23a257b8
|
@ -23,4 +23,14 @@ int tdbPageInsertCell(SPage *pPage, int idx, SCell *pCell, int szCell) {
|
||||||
int tdbPageDropCell(SPage *pPage, int idx) {
|
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;
|
||||||
}
|
}
|
Loading…
Reference in New Issue