2012-08-30 |
Robert Haas | Rearrange pointers so that the freelist pointers are... chash |
commit | commitdiff | tree |
2012-08-03 |
Robert Haas | Code cleanup. |
commit | commitdiff | tree |
2012-08-03 |
Robert Haas | Reorganize fields to match comments. |
commit | commitdiff | tree |
2012-08-03 |
Robert Haas | Refactor garbage collection logic into a separate subro... |
commit | commitdiff | tree |
2012-08-03 |
Robert Haas | Set hazard pointers correctly instead of wrong. Duh. |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | De-obfuscate deletion code, maybe. |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | Code tightening. |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | Add memory barrier in single-node-reclaim case. Improv... |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | Get rid of CHashBucketCleanup; CHashBucketScan can... |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | Comment fixes. |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | Track GC reclaims skipped in stats. |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | Wonky hack to print stats on every backend exit. |
commit | commitdiff | tree |
2012-08-02 |
Robert Haas | Rewrite statistics system. |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Minor optimization of allocator. |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | If we fail to allocate from a non-empty freelist, retry... |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Add some missing stats counter bumps. |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Increase maximum number of freelists from 16 to 64... |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Bug fixes. |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Implement concurrent and collision tests for dynahash. |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Fix ABA problem with inserts. |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Get rid of chash_bucket hack in favor of using formal... |
commit | commitdiff | tree |
2012-08-01 |
Robert Haas | Code cleanup. |
commit | commitdiff | tree |
2012-07-30 |
Robert Haas | Better statistics stuff. |
commit | commitdiff | tree |
2012-07-30 |
Robert Haas | Minor code beautification. |
commit | commitdiff | tree |
2012-07-30 |
Robert Haas | Statistics code. |
commit | commitdiff | tree |
2012-07-30 |
Robert Haas | Improve comments about gc_next. |
commit | commitdiff | tree |
2012-07-30 |
Robert Haas | Code rearrangement. Cosmetic only. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Another test case. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Fix another bug related to marked CHashPtrs. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Improve testing code to better diagnose concurrency... |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Don't bogusly propagate delete-marks. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Add missing else. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Thinko: of course, invalid CHashPtrs can also be delete... |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Concurrency test function for chash. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Stupid bug fix. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Separate dynahash insert, search, delete tests. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Separate chash insert, search, delete tests. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Test code for deletes, and associated bug fixes. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Add cleanup scan logic. |
commit | commitdiff | tree |
2012-07-27 |
Robert Haas | Bug fixes. |
commit | commitdiff | tree |
2012-07-26 |
Robert Haas | Unify scan code. |
commit | commitdiff | tree |
2012-07-26 |
Robert Haas | Further simplifications. |
commit | commitdiff | tree |
2012-07-26 |
Robert Haas | Update comments. |
commit | commitdiff | tree |
2012-07-26 |
Robert Haas | Adapt code to use compare-and-swap. |
commit | commitdiff | tree |
2012-07-26 |
Robert Haas | CHashAddToGarbage |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | First attempt at CHashDelete - slightly incomplete... |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | More micro-optimization. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Use faster memory barrier on x86. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Fix stupid thinko. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Time inserts, searches. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Some micro-optimization and code beautification. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Show shared memory allocated for each hash table. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Improve dynahash test code. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Beginnings of dynahash testing code. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Avoid leaking nodes on a failed insert. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Better debugging code, another bug fix. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | More bug fixing. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | More debugging code. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Remove debugging code. |
commit | commitdiff | tree |
2012-07-25 |
Robert Haas | Testing code and resulting bug fixes. |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | An attempt at making insertion work. |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | Tabify. |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | Start of work on GC. |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | More initialization code. |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | Support dependency barriers. |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | First attempt at CHashSearch. |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | More work on chash. Initialization theoretically works... |
commit | commitdiff | tree |
2012-07-24 |
Robert Haas | Start of work on chash. |
commit | commitdiff | tree |
2012-07-23 |
Peter Eisentraut | Update information schema to SQL:2011 |
commit | commitdiff | tree |
2012-07-23 |
Robert Haas | Make pgbench vacuum before building indexes. |
commit | commitdiff | tree |
2012-07-22 |
Tom Lane | Fix name collision between concurrent regression tests. |
commit | commitdiff | tree |
2012-07-22 |
Tom Lane | Improve copydir() code for the case that fsync is off. |
commit | commitdiff | tree |
2012-07-21 |
Tom Lane | Use --nosync during make check's initdb call. |
commit | commitdiff | tree |
2012-07-21 |
Tom Lane | Suppress volatile-related warning seen in some compilers. |
commit | commitdiff | tree |
2012-07-21 |
Tom Lane | Account for SRFs in targetlists in planner rowcount... |
commit | commitdiff | tree |
2012-07-21 |
Robert Haas | Revert temporary patch to debug Windows breakage. |
commit | commitdiff | tree |
2012-07-21 |
Robert Haas | Repair plpgsql_validator breakage. |
commit | commitdiff | tree |
2012-07-20 |
Andrew Dunstan | Remove now unneeded results file for disabled prepared... |
commit | commitdiff | tree |
2012-07-20 |
Robert Haas | Temporary patch to try to debug why event trigger patch... |
commit | commitdiff | tree |
2012-07-20 |
Andrew Dunstan | Remove prepared transactions from main isolation test... |
commit | commitdiff | tree |
2012-07-20 |
Peter Eisentraut | pg_dump: Simplify mkdir() error checking |
commit | commitdiff | tree |
2012-07-20 |
Alvaro Herrera | connoinherit may be true only for CHECK constraints |
commit | commitdiff | tree |
2012-07-20 |
Tom Lane | Fix whole-row Var evaluation to cope with resjunk colum... |
commit | commitdiff | tree |
2012-07-20 |
Robert Haas | Make new event trigger facility actually do something. |
commit | commitdiff | tree |
2012-07-19 |
Tom Lane | Rethink checkpointer's fsync-request table representation. |
commit | commitdiff | tree |
2012-07-19 |
Tom Lane | Send only one FORGET_RELATION_FSYNC request when droppi... |
commit | commitdiff | tree |
2012-07-18 |
Heikki Linnakangas | Refactor the way code is shared between some range... |
commit | commitdiff | tree |
2012-07-18 |
Tom Lane | Fix statistics breakage from bgwriter/checkpointer... |
commit | commitdiff | tree |
2012-07-18 |
Tom Lane | Fix management of pendingOpsTable in auxiliary processes. |
commit | commitdiff | tree |
2012-07-18 |
Robert Haas | Syntax support and documentation for event triggers. |
commit | commitdiff | tree |
2012-07-18 |
Tom Lane | Get rid of useless global variable in pg_upgrade. |
commit | commitdiff | tree |
2012-07-18 |
Tom Lane | Improve pg_upgrade's load_directory() function. |
commit | commitdiff | tree |
2012-07-17 |
Tom Lane | Improve coding around the fsync request queue. |
commit | commitdiff | tree |
2012-07-17 |
Peter Eisentraut | PL/Python: Remove PLy_result_ass_item |
commit | commitdiff | tree |
2012-07-17 |
Peter Eisentraut | Show step titles in the pg_upgrade man page |
commit | commitdiff | tree |
2012-07-17 |
Alvaro Herrera | Remove recently added PL/Perl encoding tests |
commit | commitdiff | tree |
2012-07-17 |
Tom Lane | Put back storage/proc.h in postmaster.c. |
commit | commitdiff | tree |
2012-07-17 |
Alvaro Herrera | Introduce timeout handling framework |
commit | commitdiff | tree |
2012-07-16 |
Peter Eisentraut | Remove unreachable code |
commit | commitdiff | tree |
2012-07-16 |
Peter Eisentraut | Add comment why seemingly dead code is necessary |
commit | commitdiff | tree |
next |