1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Add the "space_used.tcl" script to the tools directory. This script is used

to measure how much disk space is used by each table and index of a database. (CVS 789)

FossilOrigin-Name: 83b2c27a568cd67cd5162d513766b23ff9fc2227
This commit is contained in:
drh
2002-11-24 14:52:27 +00:00
parent 58f391b36f
commit 86bc1c8273
5 changed files with 121 additions and 11 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test3.c,v 1.19 2002/08/31 18:53:08 drh Exp $
** $Id: test3.c,v 1.20 2002/11/24 14:52:27 drh Exp $
*/
#include "sqliteInt.h"
#include "pager.h"
@@ -822,7 +822,6 @@ static int btree_payload_size(
sqliteBtreeDataSize(pCur, &n2);
sprintf(zBuf, "%d", n1+n2);
Tcl_AppendResult(interp, zBuf, 0);
free(zBuf);
return SQLITE_OK;
}