Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Arrange to compile flex output files as inclusions into other files | Tom Lane | 2002-11-01 | |
| | | | | | | | | (usually bison output files), not as standalone files. This hack works around flex's insistence on including <stdio.h> before we are able to include postgres.h; postgres.h will already be read before the compiler starts to read the flex output file. Needed for largefile support on some platforms. | |||
* | Ooops, forgot to fix contrib regression tests for WARNING/NOTICE change. | Tom Lane | 2002-11-01 | |
| | ||||
* | Reduce a couple of debugging messages from LOG to DEBUG1 category. | Tom Lane | 2002-11-01 | |
| | ||||
* | Reduce messages associated with shell-type function arguments/results | Tom Lane | 2002-11-01 | |
| | | | | from WARNING to NOTICE, since they are expected messages in common cases. | |||
* | Update to match expected results on OS X 10.2. | Tom Lane | 2002-11-01 | |
| | ||||
* | After elog(PANIC), exit with abort() not proc_exit(). This allows a | Tom Lane | 2002-11-01 | |
| | | | | | | core file to be produced for debugging, and avoids trying to run the normal proc-exit cleanup hooks, which are likely to cause additional problems if the system is hosed. | |||
* | Correct ordering of geometry/freebsd entries, add one for freebsd5. | Tom Lane | 2002-11-01 | |
| | ||||
* | Update for test changes. | Tom Lane | 2002-11-01 | |
| | ||||
* | Avoid malloc(0) when printing a table of no columns. On some platforms | Tom Lane | 2002-11-01 | |
| | | | | this returns NULL, which confuses the code. | |||
* | Fix some bogus comments. | Tom Lane | 2002-11-01 | |
| | ||||
* | Add missing #include <errno.h>, per gripe from Alessio Bragadini. | Tom Lane | 2002-10-31 | |
| | ||||
* | Update description of timestamp types for 7.3 implementation. | Tom Lane | 2002-10-31 | |
| | ||||
* | Got tired of explaining why this Assert is not wrong. | Tom Lane | 2002-10-31 | |
| | ||||
* | Code review for statement_timeout patch. Fix some race conditions | Tom Lane | 2002-10-31 | |
| | | | | | | between signal handler and enable/disable code, avoid accumulation of timing error due to trying to maintain remaining-time instead of absolute-end-time, disable timeout before commit not after. | |||
* | Fix miscalculation of remaining free space during tuple chain moving. | Tom Lane | 2002-10-31 | |
| | | | | | | | Only affects machines where MAXALIGN > 4, and is a boundary-condition case even there, but still surprising that it's not been identified before. Also reduce tuple chain move give-up messages from WARNING to DEBUG1, since they are not unexpected conditions. | |||
* | Avoid use of inline functions that are not declared static. Needed to | Tom Lane | 2002-10-31 | |
| | | | | conform to C99's brain-dead notion of how inline functions should work. | |||
* | Clean up gram.y trailing spaces. | Bruce Momjian | 2002-10-31 | |
| | ||||
* | Add mention of T on .pot files, from pkuczynski@hypode.pl | Bruce Momjian | 2002-10-30 | |
| | ||||
* | Return something meaningful for Statement.getFetchSize(). Previously we were | Barry Lind | 2002-10-30 | |
| | | | | | | | returning an exception when this method was called. Modified Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java | |||
* | Clean up Unixware entry for Larry Rosenman | Bruce Momjian | 2002-10-30 | |
| | ||||
* | Add additional ORDER BY to join regression test, per Tatsuo. | Bruce Momjian | 2002-10-30 | |
| | ||||
* | Remove /src/utils. Is final cleanup of getopt.c resurection. | Bruce Momjian | 2002-10-30 | |
| | ||||
* | Add popen/pclose -> _popen/_pclose() mapping for Win32. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update ports list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update ports list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update ports list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update comments. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | getopt.c now in /port, for MS Win. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Re-add getopt.c for MSWin psql. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Re-add getopt.c. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Clean up markup in ports list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update ports list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update regression for FreeBSD 4.7, for Larry Rosenman | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update Giles email address. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Reword: | Bruce Momjian | 2002-10-29 | |
| | | | | | < * Improve concurrency in GIST > * Add concurrency to GIST | |||
* | Update port list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update port list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Done: | Bruce Momjian | 2002-10-29 | |
| | | | | > * -Prevent aggregates from being used in rule WHERE clauses | |||
* | Update port list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Update port list. | Bruce Momjian | 2002-10-29 | |
| | ||||
* | Add ORDER BY to join regression test. | Bruce Momjian | 2002-10-28 | |
| | ||||
* | Update from Neil Conway: | Bruce Momjian | 2002-10-28 | |
| | | | | | | | | | | | | | | | | | | | | < * Add floor(float8) and other missing functions > * -Add floor(float8) and other missing functions 174c174 < * Improve concurrency of hash indexes (Neil Conway) > * Improve concurrency of hash indexes (Neil) 277c277 < o Allow array declarations and other data types in PL/PgSQl DECLARE > o Allow array declarations and other data types in PL/PgSQL DECLARE 293c293 < * -Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil Conway) > * -Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil) 474c474 < * Precompile SQL functions to avoid overhead (Neil Conway) > * Precompile SQL functions to avoid overhead (Neil) 549c549 < * Neil is Neil Conway <nconway@klamath.dyndns.org> > * Neil is Neil Conway <neilc@samurai.com> | |||
* | fseeko NetBSD fix. | Bruce Momjian | 2002-10-28 | |
| | ||||
* | Update ports list. | Bruce Momjian | 2002-10-27 | |
| | ||||
* | Suppress compile warnings on OS X. | Tom Lane | 2002-10-27 | |
| | ||||
* | Update ports. | Bruce Momjian | 2002-10-26 | |
| | ||||
* | Update ports list. | Bruce Momjian | 2002-10-26 | |
| | ||||
* | Update port list. | Bruce Momjian | 2002-10-26 | |
| | ||||
* | Update ports. | Bruce Momjian | 2002-10-26 | |
| | ||||
* | Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls. | Tom Lane | 2002-10-26 | |
| |