summaryrefslogtreecommitdiff
path: root/src/backend/utils/hash
AgeCommit message (Expand)Author
2013-05-29pgindent run for release 9.3Bruce Momjian
2013-01-15Fix hash_update_hash_key() to handle same-bucket case correctly.Tom Lane
2013-01-14Prevent very-low-probability PANIC during PREPARE TRANSACTION.Tom Lane
2013-01-01Update copyrights for 2013Bruce Momjian
2012-12-12Add defenses against integer overflow in dynahash numbuckets calculations.Tom Lane
2012-10-19Fix hash_search to avoid corruption of the hash table on out-of-memory.Tom Lane
2012-02-29Move CRC tables to libpgport, and provide them in a separate include file.Tom Lane
2012-01-30Assorted comment fixes, mostly just typos, but some obsolete statements.Tom Lane
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-09-04Clean up the #include mess a little.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-04-11Fix the size of predicate lock manager's shared memory hash tables at creation.Heikki Linnakangas
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-02-26pgindent run for 9.0Bruce Momjian
2010-01-07Remove all the special-case code for INT64_IS_BUSTED, per decision thatTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-01-01Update copyright for 2009.Bruce Momjian
2008-08-25Update URL to Ross William's paper.Alvaro Herrera
2008-03-27Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane
2008-02-19Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-09-11Include hash table name in all the internal-error elog messages inTom Lane
2007-06-01Fix several hash functions that were taking chintzy shortcuts instead ofTom Lane
2007-04-26Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane
2007-01-20Remove remains of old depend target.Peter Eisentraut
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-09-27Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane
2006-08-14Remove hash_destroy calls in hash_create's failure paths. As noted byTom Lane
2006-07-22Add support to dynahash.c for partitioning shared hashtables accordingTom Lane
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-06-25Tweak dynahash.c to avoid wasting memory space in non-shared hash tables.Tom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-08-20Convert the arithmetic for shared memory size calculation from 'int'Tom Lane
2005-06-26Tweak dynahash.c to not allocate so many entries at once when dealingTom Lane
2005-06-18When using C-string lookup keys in a dynahash.c hash table, use strncpy()Tom Lane
2005-06-08Marginal hack to avoid spending a lot of time in find_join_rel duringTom Lane
2005-06-02Change CRCs in WAL records from 64bit to 32bit for performance reasons.Tom Lane
2005-05-29Modify hash_search() API to prevent future occurrences of the errorTom Lane
2005-05-16Adjust out-of-date comment.Tom Lane
2005-05-06Marginal performance improvements in dynahash: make sure that everythingTom Lane
2005-04-14Marginal hack to use a specialized hash function for dynahash hashtablesTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-11-21Fix rounding problem in dynahash.c's decision about when the targetTom Lane
2004-10-25Modify hash_create() to elog(ERROR) if an error occurs, rather thanNeil Conway
2004-10-22Minor code cleanup: hdefault() only ever returned "true", so it may asNeil Conway