0
I Use This!
Inactive

Commits : Listings

Analyzed 3 days ago. based on code collected 3 days ago.
Aug 19, 2024 — Aug 19, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fix bugs in building the in-memory version, and returning data from, repeat count compressed fixed-length pages. More... over 15 years ago
Update verify code, the position-in-the-tree code wasn't handling internal column store pages since I split the row/column structures into two separate types. More... over 15 years ago
Don't let max be less than min. More... over 15 years ago
Add support for memory tracking (for single-threaded applications). More... over 15 years ago
Add support for memory tracking (for single-threaded applications). More... over 15 years ago
Run lint from this directory from now on. More... over 15 years ago
Add support for insert (convert the WT_{ROW,COL}_INDX array into a balanced binary tree, and then insert into that tree. This is barely working: more to the point, there's not yet any reconciliation of pages before they're written to disk, that is, the trees are never migrated back into pages. More... over 15 years ago
Rework the t.c test program into a more general tester: it has a config file now, and it tests results against a BDB database instead of trying to figure out what key/data items should be in a particular spot. More... over 15 years ago
Add err & errx methods for the DB handle. More... over 15 years ago
Add err & errx methods for the DB handle. Add support for insert (convert the WT_{ROW,COL}_INDX array into a balanced binary tree, and then insert into that tree. This is barely working: more to the point, there's not yet any reconciliation of pages before they're written to disk, that is, the trees are never migrated back into pages. More... over 15 years ago
Add support for insert (convert the WT_{ROW,COL}_INDX array into a balanced binary tree, and then insert into that tree. This is barely working: more to the point, there's not yet any reconciliation of pages before they're written to disk, that is, the trees are never migrated back into pages. Add err & errx methods for the DB handle. More... over 15 years ago
Add support for insert (convert the WT_{ROW,COL}_INDX array into a balanced binary tree, and then insert into that tree. This is barely working: more to the point, there's not yet any reconciliation of pages before they're written to disk, that is, the trees are never migrated back into pages. More... over 15 years ago
From [email protected]: More... over 15 years ago
Add a test for writing. More... over 15 years ago
Move the Huffman test driver into the Attic. More... over 15 years ago
Upgrade flexelint. More... over 15 years ago
Uninitialized variable -- key is the app's DBT, not our local one. The WT_ROW_INDX->data field should never be NULL. More... over 15 years ago
Rework the DBT return code for clarity and to correctly set the caller's key/data DBT fields. More... over 15 years ago
Handle overflow keys in the DBT return code. While in here, change verify to not instantiate keys for real, make temporary copies, otherwise verifying a database will explode the memory required to store it. More... over 15 years ago
Rename a couple variables for clarity. More... over 15 years ago
I set the WT_ROW_INDX->data field to NULL and set the size, for keys needing processing before use (overflow or Huffman encoded keys), and set the page_data field to point to the on-page key. However, the page_data field is also being used to point to the on-page data item, which won't work. (I don't yet test overflow keys, which is why I haven't seen the failure.) Change to set the WT_ROW_INDX->data field to point to the on-page key when a key needs further processing, and leave the size field 0 to flag the need for further processing. This has the added benefit of removing the WT_ROW_INDX flags field entirely, we're down to 16 bytes now. More... over 15 years ago
sort flags More... over 15 years ago
Bug, forgot to swap the operator when copying the min err routine to the max err routine. More... over 15 years ago
Add a arg-max error routine. More... over 15 years ago
Update More... over 15 years ago
We store the fixed-length column store number of bytes in 8-bits, that limits us to 255 bytes of fixed-length object. More... over 15 years ago
Clean up a comment. More... over 15 years ago
The WT_COL_INDX array doesn't need a flags field, yet. More... over 15 years ago
Don't free memory associated with deleted data items (it's not memory, it's a flag). More... over 15 years ago
Cast pointers correctly before printing them. More... over 15 years ago