Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Another FUNC_MAX_ARGS tweak. | Tom Lane | 2000-01-11 |
| | |||
* | Wrong boundary condition on number-of-args check. | Tom Lane | 2000-01-11 |
| | |||
* | Ah-hah, there are attribute size constants lurking here too. | Tom Lane | 2000-01-11 |
| | |||
* | Use symbolic INDEX_MAX_KEYS in pg_type entries for oidvector | Tom Lane | 2000-01-11 |
| | | | | and int2vector. | ||
* | Correct hardwired type information in bootstrap. | Tom Lane | 2000-01-11 |
| | |||
* | Remove no-longer-used symbols. | Tom Lane | 2000-01-11 |
| | |||
* | More cleanups. Still doesn't work. | Bruce Momjian | 2000-01-11 |
| | |||
* | More cleanups. | Bruce Momjian | 2000-01-11 |
| | |||
* | More fixes, but still need +1 for FUNC_MAX_ARGS | Bruce Momjian | 2000-01-11 |
| | |||
* | Remove outdated comment about 8 arguments. | Tom Lane | 2000-01-11 |
| | |||
* | Fix initdb so it works, but still only for 8. | Bruce Momjian | 2000-01-10 |
| | |||
* | Update type stuff. | Bruce Momjian | 2000-01-10 |
| | |||
* | Cleanup for func args > 8. | Bruce Momjian | 2000-01-10 |
| | |||
* | More updates for function call interface > 8. | Bruce Momjian | 2000-01-10 |
| | |||
* | Update fmgr to allow 32 arguments. | Bruce Momjian | 2000-01-10 |
| | |||
* | Make number of args to a function configurable. | Bruce Momjian | 2000-01-10 |
| | |||
* | Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions. | Bruce Momjian | 2000-01-10 |
| | |||
* | Update int28out and out8out and _in_ functions to handle trailing zeros | Bruce Momjian | 2000-01-10 |
| | | | | properly. | ||
* | Improve cache invalidation handling. Eespecially | Hiroshi Inoue | 2000-01-10 |
| | | | | | | this would fix TODO * elog() flushes cache, try invalidating just entries from current xact, perhaps using invalidation cache | ||
* | Fix oid8in and int28in for spaces | Bruce Momjian | 2000-01-10 |
| | |||
* | Move fixes for >8 indexed fields. | Bruce Momjian | 2000-01-10 |
| | |||
* | Move INDEX_MAX_KEYS to postgres.h, and make it configurable for users. | Bruce Momjian | 2000-01-10 |
| | |||
* | Repair subtle VACUUM bug that led to 'HEAP_MOVED_IN was not expected' | Tom Lane | 2000-01-10 |
| | | | | | | | | | | | | | | | | | | errors. VACUUM normally compacts the table back-to-front, and stops as soon as it gets to a page that it has moved some tuples onto. (This logic doesn't make for a complete packing of the table, but it should be pretty close.) But the way it was checking whether it had got to a page with some moved-in tuples was to look at whether the current page was the same as the last page of the list of pages that have enough free space to be move-in targets. And there was other code that would remove pages from that list once they got full. There was a kluge that prevented the last list entry from being removed, but it didn't get the job done. Fixed by keeping a separate variable that contains the largest block number into which a tuple has been moved. There's no longer any need to protect the last element of the fraged_pages list. Also, fix NOTICE messages to describe elapsed user/system CPU time correctly. | ||
* | Update platform-specific-expected-file support so that platforms can be | Tom Lane | 2000-01-09 |
| | | | | specified by regular-expression patterns. Add some more files. | ||
* | install_plpgsql is no longer a regress test (it's done via createlang); | Tom Lane | 2000-01-09 |
| | | | | remove the no-longer-used files. | ||
* | Add SetPidFile() and friends. | Tatsuo Ishii | 2000-01-09 |
| | |||
* | Do not start if postmaster is running. | Tatsuo Ishii | 2000-01-09 |
| | |||
* | Move SetPidFile() and firends to utils/init/miscinit.c from | Tatsuo Ishii | 2000-01-09 |
| | | | | | | postmaster/postmaster.c so that tcop/postgres.c can use them. Now we have an interlock between postmaster and postgres. | ||
* | Move SetPidFile() and firends to utils/init/miscinit.c so that | Tatsuo Ishii | 2000-01-09 |
| | | | | | tcop/postgres.c can use them. Now we have an interlock between postmaster and postgres. | ||
* | Add more portability to echo -n (code stolen from createlang) | Tatsuo Ishii | 2000-01-09 |
| | | | | Do not start postmaster if postgres is running | ||
* | New scheme for managing platform-specific regress test result files. | Tom Lane | 2000-01-09 |
| | | | | | | | Instead of hard-wiring one result file per platform, there is a map file 'resultmap' that says which one to use --- a lot like template/.similar. I have only created entries in resultmap for my own platform (HPUX) so far; feel free to add lines for other platforms. | ||
* | Remove obsolete platform-specific comparison files. | Tom Lane | 2000-01-09 |
| | |||
* | First examples of multiplatform result comparison files. | Tom Lane | 2000-01-09 |
| | |||
* | Remove obsolete platform-specific regress test comparison files. | Tom Lane | 2000-01-09 |
| | | | | | Note: don't put any of these back till you've grokked the new code for platform-specific comparisons that I'm about to commit... | ||
* | Remove CVS $Header lines from a couple of regress test files that had | Tom Lane | 2000-01-09 |
| | | | | | them --- it is just *way* too painful to keep expected results in sync when these are present. | ||
* | Update remaining tests for new psql, with the exception of 'arrays'. | Tom Lane | 2000-01-09 |
| | |||
* | Update remaining tests for new psql, with the exception of 'arrays', | Tom Lane | 2000-01-09 |
| | | | | | | | which is broken in some weird way that I don't understand. I think it may be exposing a bug in the new psql --- for one thing, I get different results when I run psql by hand than the regress script gets. What the heck??? | ||
* | Fix some missing substitutions of _OBJWD_ and _DLSUFFIX_. | Tom Lane | 2000-01-09 |
| | |||
* | Another round of planner/optimizer work. This is just restructuring and | Tom Lane | 2000-01-09 |
| | | | | | code cleanup; no major improvements yet. However, EXPLAIN does produce more intuitive outputs for nested loops with indexscans now... | ||
* | This patch removes the initialization of ri in loop in | Bruce Momjian | 2000-01-08 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | quote_postgres(...) in ecpglib.c. The code in CVS reads: quote_postgres(char *arg, int lineno) { char *res = (char *) ecpg_alloc(2 * strlen(arg) + 3, lineno); int i, ri = 0; if (!res) return (res); res[ri++] = '\''; for (i = 0, ri=0; arg[i]; i++, ri++) { switch (arg[i]) { case '\'': res[ri++] = '\''; break; case '\\': res[ri++] = '\\'; break; default: ; } The problem here is that ri is reset to 0, thus overwriting the initial quote. Stephen Birch | ||
* | Modify PageIsEmpty and PageGetMaxOffsetNumber macros to behave sanely | Tom Lane | 2000-01-08 |
| | | | | | | | | | if presented an uninitialized (all zeroes) page. The system no longer crashes hard if an all-zeroes page is present in a relation. There seem to be some boundary conditions where a page will be appended to a relation and zeroed, but its page header is never initialized; until we can track down and fix all of those, robustness seems like a good idea. Also, clean up some obsolete and downright wrong comments. | ||
* | Need defense against oversize index entries in btree CREATE INDEX, | Tom Lane | 2000-01-08 |
| | | | | as well as when inserting entries into an existing index. | ||
* | Sorry, that I send this letter/patch again, but previous sending is | Bruce Momjian | 2000-01-07 |
| | | | | | | | | | still without answer. I want continue with to_char(), but I need any answer for this patch. Please. Thank! (and sorry of my impatient :-) Karel | ||
* | Correct grammatical error | Tatsuo Ishii | 2000-01-07 |
| | |||
* | *** empty log message *** | Michael Meskes | 2000-01-07 |
| | |||
* | Update pg_dumpall for new psql format. | Bruce Momjian | 2000-01-06 |
| | |||
* | Changed "triggered data change violation" detection code | Jan Wieck | 2000-01-06 |
| | | | | | | in trigger manager. Jan | ||
* | Fixed bug in targetlist expression replacement of | Jan Wieck | 2000-01-06 |
| | | | | | | SET DEFAULT referential action triggers. Jan | ||
* | Clean up header for uniform appearance throughout tests. | Thomas G. Lockhart | 2000-01-06 |
| | |||
* | Update for new psql formatting. | Thomas G. Lockhart | 2000-01-06 |
| |