Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
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. | |||
2002-10-31 | Fix miscalculation of remaining free space during tuple chain moving. | Tom Lane | |
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. | |||
2002-10-31 | Avoid use of inline functions that are not declared static. Needed to | Tom Lane | |
conform to C99's brain-dead notion of how inline functions should work. | |||
2002-10-31 | Clean up gram.y trailing spaces. | Bruce Momjian | |
2002-10-30 | 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 | |
returning an exception when this method was called. Modified Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java | |||
2002-10-30 | 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-29 | 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 | |
< * Improve concurrency in GIST > * Add concurrency to GIST | |||
2002-10-29 | Update port list. | Bruce Momjian | |
2002-10-29 | Update port list. | Bruce Momjian | |
2002-10-29 | Done: | Bruce Momjian | |
> * -Prevent aggregates from being used in rule WHERE clauses | |||
2002-10-29 | Update port list. | Bruce Momjian | |
2002-10-29 | Update port list. | Bruce Momjian | |
2002-10-28 | Add ORDER BY to join regression test. | Bruce Momjian | |
2002-10-28 | Update from Neil Conway: | Bruce Momjian | |
< * 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> | |||
2002-10-28 | fseeko NetBSD fix. | Bruce Momjian | |
2002-10-27 | Update ports list. | Bruce Momjian | |
2002-10-27 | Suppress compile warnings on OS X. | Tom Lane | |
2002-10-26 | 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 | Update BSD/OS as supported platform. | Bruce Momjian | |
2002-10-25 | Add dummy variable declaration to PG_FUNCTION_INFO_V1() to prevent | Tom Lane | |
'empty declaration' warnings from compilers that care about such things. Per discussion back before 7.2 release; we didn't do it then because we'd already missed all the beta cycle ... | |||
2002-10-25 | Remove #warning directive, which is nonstandard and isn't really | Tom Lane | |
buying us anything to make it worth the porting risk. Per discussion quite some time ago. | |||
2002-10-25 | Add: | Bruce Momjian | |
> * Allow limits on per-db/user connections | |||
2002-10-25 | Change to fseeko(), per Philip. | Bruce Momjian | |
2002-10-25 | Patch submitted by Kris Jurka to fix arrayindexoutofbounds exception caused | Barry Lind | |
by improper array initialization. Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java | |||
2002-10-25 | Allow fseeko in pg_dump only if fseeko() will work for all supported file | Bruce Momjian | |
sizes. | |||
2002-10-24 | Code review for connection timeout patch. Avoid unportable assumption | Tom Lane | |
that tv_sec is signed; return a useful error message on timeout failure; honor PGCONNECT_TIMEOUT environment variable in PQsetdbLogin; make code obey documentation statement that timeout=0 means no timeout. | |||
2002-10-24 | Fix some places that were unportably assuming struct timeval's tv_sec | Tom Lane | |
field is signed. Clean up casting. | |||
2002-10-24 | Function-call-style type coercions should be treated as explicit | Tom Lane | |
coercions, not implicit ones. For example, 'select abstime(1035497293)' should succeed because there is an explicit binary coercion from int4 to abstime. | |||
2002-10-24 | Add note about sort order of character datatypes being locale-dependent, | Tom Lane | |
per suggestion from Nicolaus Erichsen. | |||
2002-10-24 | Make link to schema inspection functions more clear. | Tom Lane | |