| Commit message (Expand) | Author | Age | Files | Lines |
| * | Cleaned up log output a little bit more. | Michael Meskes | 2006-08-08 | 5 | -11/+42 |
| * | Made parser check for valid copy to/from stdin/stdout combinations. | Michael Meskes | 2006-08-08 | 33 | -714/+748 |
| * | For protocol-level prepare/bind/execute: | Bruce Momjian | 2006-08-08 | 6 | -22/+57 |
| * | Put back another improperly-removed #include. | Tom Lane | 2006-08-07 | 1 | -1/+2 |
| * | On some platforms, pg_usleep isn't interruptible by signals; fix | Tom Lane | 2006-08-07 | 1 | -9/+11 |
| * | Make recovery from WAL be restartable, by executing a checkpoint-like | Tom Lane | 2006-08-07 | 12 | -115/+273 |
| * | Joachim fixed some bugs in numeric handling in pgtypeslib. | Michael Meskes | 2006-08-07 | 23 | -361/+825 |
| * | Tweak sanity_check regression test to display more tables (viz, those | Tom Lane | 2006-08-06 | 2 | -72/+142 |
| * | Add support for forcing a switch to a new xlog file; cause such a switch | Tom Lane | 2006-08-06 | 5 | -53/+411 |
| * | Use better named loop variable for large loop, rather than 'i'. | Bruce Momjian | 2006-08-06 | 1 | -10/+14 |
| * | Fix inheritance_planner() to delete dummy subplans from its Append plan | Tom Lane | 2006-08-05 | 1 | -14/+62 |
| * | Two more changes to regression tests to fix two differences in different setups. | Michael Meskes | 2006-08-05 | 6 | -6/+6 |
| * | Extend relation_excluded_by_constraints() to check for mutually | Tom Lane | 2006-08-05 | 1 | -6/+43 |
| * | Teach predicate_refuted_by() how to do proofs involving NOT-clauses. | Tom Lane | 2006-08-05 | 1 | -4/+74 |
| * | Add some blank lines for formatting. | Bruce Momjian | 2006-08-04 | 1 | -1/+4 |
| * | Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EState | Tom Lane | 2006-08-04 | 4 | -32/+105 |
| * | #ifdef fix for MSVC builds of libpq. | Bruce Momjian | 2006-08-04 | 1 | -2/+2 |
| * | Improve logging of protocol-level prepared statements. | Bruce Momjian | 2006-08-04 | 1 | -9/+11 |
| * | Fix bug in new pg_dump -T/-N handling that was dumping system schemas if | Bruce Momjian | 2006-08-04 | 1 | -4/+12 |
| * | Remove redeclaration of struct sqlca_t --- unnecessary and provokes | Tom Lane | 2006-08-04 | 1 | -3/+1 |
| * | Fix missing 'static' keywords --- some compilers gripe about this. | Tom Lane | 2006-08-04 | 1 | -3/+3 |
| * | 'make clean' must remove the create subdirectories results/ and log/, | Tom Lane | 2006-08-04 | 1 | -4/+2 |
| * | Teach eval_const_expressions to simplify BooleanTest nodes that have | Tom Lane | 2006-08-04 | 1 | -1/+53 |
| * | Regression test updates and fixes | Michael Meskes | 2006-08-04 | 28 | -11636/+164 |
| * | Add missing ecpg function prototype needed when in threaded mode --- | Bruce Momjian | 2006-08-04 | 1 | -1/+4 |
| * | Add some basic tests of GUC behavior. | Tom Lane | 2006-08-04 | 4 | -4/+222 |
| * | Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations during | Tom Lane | 2006-08-03 | 1 | -2/+2 |
| * | Remove use of a regex character class in resultmap (for freebsd version | Tom Lane | 2006-08-03 | 1 | -1/+1 |
| * | Fix AfterTriggerExecute() to pass tg_trigtuple and tg_newtuple as NULLs | Tom Lane | 2006-08-03 | 1 | -26/+19 |
| * | Add missing pgstat_count_index_scan(), per Andreas Seltenreich. | Tom Lane | 2006-08-03 | 1 | -1/+4 |
| * | A few regression tests for VALUES, from Gavin Sherry. | Tom Lane | 2006-08-03 | 6 | -0/+136 |
| * | Removed compiler warnings | Michael Meskes | 2006-08-03 | 9 | -154/+162 |
| * | Applied test suite update by Joachim Wieland <joe@mcknight.de>. | Michael Meskes | 2006-08-03 | 27 | -354/+552 |
| * | Move 'ddl' right after 'none' in postgresql.conf. It used to be between | Bruce Momjian | 2006-08-02 | 1 | -1/+1 |
| * | Fix logic to prevent pg_dump from dumping system schemas; bug introduced | Bruce Momjian | 2006-08-02 | 1 | -18/+27 |
| * | remove extraneous space after -L flag. | Andrew Dunstan | 2006-08-02 | 1 | -1/+1 |
| * | Arrange for ValuesScan to keep per-sublist expression eval state in a | Tom Lane | 2006-08-02 | 2 | -73/+87 |
| * | And finally the Makefiles | Michael Meskes | 2006-08-02 | 4 | -0/+46 |
| * | Wups, got the test for contain_vars_of_level-not-needed wrong in | Tom Lane | 2006-08-02 | 1 | -2/+2 |
| * | Hopefully that's it. The remaining files for ecpg regression tests. | Michael Meskes | 2006-08-02 | 126 | -0/+30557 |
| * | Add a HINT per suggestion from Michael Glaesemann. Also, tweak OLD/NEW | Tom Lane | 2006-08-02 | 1 | -5/+9 |
| * | Some more regression test files | Michael Meskes | 2006-08-02 | 4 | -0/+759 |
| * | One more file to remove | Michael Meskes | 2006-08-02 | 1 | -34/+0 |
| * | Removed old test files | Michael Meskes | 2006-08-02 | 20 | -2432/+0 |
| * | ynced parser and keyword list. | Michael Meskes | 2006-08-02 | 9 | -130/+251 |
| * | Add support for multi-row VALUES clauses as part of INSERT statements | Joe Conway | 2006-08-02 | 40 | -309/+1873 |
| * | Fix bug I introduced while cleaning up pg_dump -t/-n patch. | Bruce Momjian | 2006-08-01 | 1 | -4/+2 |
| * | Add support for loadable modules to allocated shared memory and | Bruce Momjian | 2006-08-01 | 6 | -13/+261 |
| * | Add pg_dump -X no-data-for-failed-tables option to suppress loading data | Bruce Momjian | 2006-08-01 | 3 | -3/+26 |
| * | Allow multiple -n (schema) and -t (table) pg_dump options, and add -T | Bruce Momjian | 2006-08-01 | 3 | -95/+251 |