summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-10-31Got tired of explaining why this Assert is not wrong.Tom Lane
2002-10-31Code review for statement_timeout patch. Fix some race conditionsTom 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-31Fix 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-31Avoid use of inline functions that are not declared static. Needed toTom Lane
conform to C99's brain-dead notion of how inline functions should work.
2002-10-31Clean up gram.y trailing spaces.Bruce Momjian
2002-10-30Add mention of T on .pot files, from pkuczynski@hypode.plBruce Momjian
2002-10-30Return something meaningful for Statement.getFetchSize(). Previously we wereBarry Lind
returning an exception when this method was called. Modified Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
2002-10-30Clean up Unixware entry for Larry RosenmanBruce Momjian
2002-10-30Add additional ORDER BY to join regression test, per Tatsuo.Bruce Momjian
2002-10-30Remove /src/utils. Is final cleanup of getopt.c resurection.Bruce Momjian
2002-10-29Add popen/pclose -> _popen/_pclose() mapping for Win32.Bruce Momjian
2002-10-29Update ports list.Bruce Momjian
2002-10-29Update ports list.Bruce Momjian
2002-10-29Update ports list.Bruce Momjian
2002-10-29Update comments.Bruce Momjian
2002-10-29getopt.c now in /port, for MS Win.Bruce Momjian
2002-10-29Re-add getopt.c for MSWin psql.Bruce Momjian
2002-10-29Re-add getopt.c.Bruce Momjian
2002-10-29Clean up markup in ports list.Bruce Momjian
2002-10-29Update ports list.Bruce Momjian
2002-10-29Update regression for FreeBSD 4.7, for Larry RosenmanBruce Momjian
2002-10-29Update Giles email address.Bruce Momjian
2002-10-29Reword:Bruce Momjian
< * Improve concurrency in GIST > * Add concurrency to GIST
2002-10-29Update port list.Bruce Momjian
2002-10-29Update port list.Bruce Momjian
2002-10-29Done:Bruce Momjian
> * -Prevent aggregates from being used in rule WHERE clauses
2002-10-29Update port list.Bruce Momjian
2002-10-29Update port list.Bruce Momjian
2002-10-28Add ORDER BY to join regression test.Bruce Momjian
2002-10-28Update 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-28fseeko NetBSD fix.Bruce Momjian
2002-10-27Update ports list.Bruce Momjian
2002-10-27Suppress compile warnings on OS X.Tom Lane
2002-10-26Update ports.Bruce Momjian
2002-10-26Update ports list.Bruce Momjian
2002-10-26Update port list.Bruce Momjian
2002-10-26Update ports.Bruce Momjian
2002-10-26Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls.Tom Lane
2002-10-26Update BSD/OS as supported platform.Bruce Momjian
2002-10-25Add dummy variable declaration to PG_FUNCTION_INFO_V1() to preventTom 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-25Remove #warning directive, which is nonstandard and isn't reallyTom Lane
buying us anything to make it worth the porting risk. Per discussion quite some time ago.
2002-10-25Add:Bruce Momjian
> * Allow limits on per-db/user connections
2002-10-25Change to fseeko(), per Philip.Bruce Momjian
2002-10-25Patch submitted by Kris Jurka to fix arrayindexoutofbounds exception causedBarry Lind
by improper array initialization. Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
2002-10-25Allow fseeko in pg_dump only if fseeko() will work for all supported fileBruce Momjian
sizes.
2002-10-24Code review for connection timeout patch. Avoid unportable assumptionTom 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-24Fix some places that were unportably assuming struct timeval's tv_secTom Lane
field is signed. Clean up casting.
2002-10-24Function-call-style type coercions should be treated as explicitTom 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-24Add note about sort order of character datatypes being locale-dependent,Tom Lane
per suggestion from Nicolaus Erichsen.
2002-10-24Make link to schema inspection functions more clear.Tom Lane