From 8d23a257b84f5ec57bde49342eb0214162598ef4 Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Wed, 9 Mar 2022 09:10:21 +0000 Subject: [PATCH] more TDB --- source/libs/tdb/src/db/tdbPage.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/libs/tdb/src/db/tdbPage.c b/source/libs/tdb/src/db/tdbPage.c index ffa94b14a4..6c92e3b933 100644 --- a/source/libs/tdb/src/db/tdbPage.c +++ b/source/libs/tdb/src/db/tdbPage.c @@ -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; } \ No newline at end of file