into the Packages Collection. This package is meant to support data warehousing in a much more efficient manner than traditional RDBMSs. C-Store is a read-optimized relational DBMS that contrasts sharply with most current systems, which are write-optimized. Among the many differences in its design are: + storage of data by column rather than by row, + careful coding and packing of objects into storage including main memory during query processing, + storing an overlapping collection of column-oriented projections, rather than the current fare of tables and indexes, + a non-traditional implementation of transactions which includes high availability and snapshot isolation for read-only transactions, + and the extensive use of bitmap indexes to complement B-tree structures. Please note that the storage required for this package could be viewed as being quite extreme - the standard build and data occupies in excess of 20 GB, and that is all installed into ${PREFIX} at installation time.
33 lines
628 B
Text
33 lines
628 B
Text
$NetBSD: patch-al,v 1.1.1.1 2007/11/10 11:33:00 agc Exp $
|
|
|
|
--- src/Util/BDBFile.cpp 2007/11/07 21:22:30 1.1
|
|
+++ src/Util/BDBFile.cpp 2007/11/07 21:37:32
|
|
@@ -275,6 +275,7 @@
|
|
|
|
void BDBFile::showStats()
|
|
{
|
|
+#if 0
|
|
DB_BTREE_STAT *pStat;
|
|
|
|
dbHandle->stat(&pStat, 0);
|
|
@@ -284,10 +285,12 @@
|
|
cout << bdbFileName << " contains "
|
|
<< pStat->bt_ndata << " records\n";
|
|
free(pStat);
|
|
+#endif
|
|
}
|
|
|
|
u_long BDBFile::getRecordCount()
|
|
{
|
|
+#if 0
|
|
DB_BTREE_STAT *pStat;
|
|
|
|
dbHandle->stat(&pStat, 0);
|
|
@@ -297,6 +300,7 @@
|
|
u_long cnt = pStat->bt_ndata;
|
|
free(pStat);
|
|
return cnt;
|
|
+#endif
|
|
}
|
|
|
|
void BDBFile::dumpDB()
|