summaryrefslogtreecommitdiff
path: root/src/include/cell.i
AgeCommit message (Expand)Author
2014-05-08Scan include files for style problems. Fix the ones found right away.Michael Cahill
2014-05-03fix a commentKeith Bostic
2014-03-21Fix an unused variable building without diagnostics.Michael Cahill
2014-03-20minor review nitsMichael Cahill
2014-03-19When I switched __wt_cell_leaf_value_parse() to using the raw cell type,Keith Bostic
2014-03-19comment typoKeith Bostic
2014-03-19We can't collapse removed key and value overflow items into a singleKeith Bostic
2014-03-19Assert we only reset a cell once, and that it's the type we expect whenKeith Bostic
2014-03-18Generalize overflow keys to look like overflow values, that is, set theKeith Bostic
2014-01-10Add WT_CLEAR_INLINE which uses structure assignment to (hopefully) preventKeith Bostic
2014-01-10Fix warnings about "implicit conversion loses integer precision: 'size_t' (ak...Michael Cahill
2014-01-10Avoid memset in performance-critical code by keeping a zeroed static structur...Michael Cahill
2014-01-09Cherry pick 83b7068 from Michael's cell-unpack-optimizations branch.Keith Bostic
2014-01-09Avoid unpacking the key cell multiple times when returning key/valueKeith Bostic
2014-01-07Update copyright notices for 2014.Keith Bostic
2013-12-23Change the returned length of a cell from a uint32_t to a size_t.Keith Bostic
2013-12-22Missed on, use WT_PTRDIFF, not WT_PTRDIFF32 to store into a size_t.Keith Bostic
2013-12-22Change the length of an in-memory cell from a uint32_t to a size_t.Keith Bostic
2013-12-22More changes to move from using uint32_t to describe in-memory lengths,Keith Bostic
2013-12-16Better/fixed support for huge keys/values.Keith Bostic
2013-11-12Enhance some comments -- explain why WT_CELL_ADDR_LEAF_NO isn't guaranteedKeith Bostic
2013-11-12Create a new cell type WT_CELL_ADDR_LEAF, use it to mark leaf pageKeith Bostic
2013-10-18There's magic code to handle overflow records that have been deleted butKeith Bostic
2013-10-18rename "type" to clarify the variable's meaning.Keith Bostic
2013-09-04Fix a bug where the test for a configured RLE was checking for anKeith Bostic
2013-07-31Restore the copy of the key/value as part of entering the API: the reason isKeith Bostic
2013-07-24Sue's review of changes to cell.i, ref #600.Keith Bostic
2013-07-19cell.i:483:6: error: conversion to 'unsigned int' from 'int' may change the s...Keith Bostic
2013-07-19Add a comment to explain why we don't need to check the new value'sKeith Bostic
2013-07-19When we aren't able to create a short key or value (and, in the case of aKeith Bostic
2013-07-19Change "short" data items from 127B or less to be 63B or less, and use theKeith Bostic
2013-07-17Add a new cell type, WT_CELL_KEY_PREFIX, that appears on row-store leafKeith Bostic
2013-07-13Turn off Huffman encoding for keys on row-store internal pages.Keith Bostic
2013-07-13Remove support for prefix-compression on row-store internal pages.Keith Bostic
2013-05-01Fix build warning.Alex Gorrod
2013-04-01Merge pull request #494 from wiredtiger/data-handlesMichael Cahill
2013-03-31Replace CHK with WT_CELL_LEN_CHK, avoid name-space pollution.Keith Bostic
2013-03-25Merge branch 'develop' into data-handlesMichael Cahill
2013-03-25Merge branch 'develop' into data-handlesMichael Cahill
2013-03-11Reorg cell unpacking code slightly to avoid recursion so it can be inlined (-...Michael Cahill
2013-01-01Update copyright notice to 2013.Keith Bostic
2012-11-30Fix warnings from "gcc -Wsign-conversion". Mostly this involved changing loo...Michael Cahill
2012-11-21whitespaceMichael Cahill
2012-11-20Review uses of WT_ITEM::data, never cast it to a non-const pointer.Michael Cahill
2012-10-24Instead of entering a fake key cell after the last cell on the page justKeith Bostic
2012-10-11The __wt_cell_unpack_copy function copies the key/value sometimes butKeith Bostic
2012-10-07Support for deleting overflow values in variable-length column-stores.Keith Bostic
2012-09-22Add dictionary support to variable-length column store objects,Keith Bostic
2012-09-22Change the WT_CELL_VALUE_COPY cell format to not, by default, includeKeith Bostic
2012-09-09Don't try and hide the raw cell type WT_CELL_VALUE_COPY, that way weKeith Bostic