Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-08-08 | Remove, no in /port. | Bruce Momjian | |
2003-08-08 | sprompt not needed in libpq. | Bruce Momjian | |
2003-08-08 | Suppress unused-variable warnings when building without Asserts. | Tom Lane | |
2003-08-08 | Conversion functions must be STRICT to prevent them from getting null inputs. | Tom Lane | |
2003-08-08 | Fix null checking of type decimal datums without indicator in Informix | Peter Eisentraut | |
mode. from Dave Cramer | |||
2003-08-08 | Be a little bit more careful about using sqlstate, in case libpq returned | Peter Eisentraut | |
NULL for it. | |||
2003-08-08 | Translation updates by Dennis Björklund | Peter Eisentraut | |
2003-08-08 | Remove postgres_ext.h inclusion -- not necessary. | Peter Eisentraut | |
2003-08-08 | Move simple_prompt()/sprompt.c into /port. | Bruce Momjian | |
2003-08-08 | Makefile cleanup. | Bruce Momjian | |
2003-08-08 | Cleanup. | Bruce Momjian | |
2003-08-08 | Typo cleanup. | Bruce Momjian | |
2003-08-08 | Makefile cleanup. | Bruce Momjian | |
2003-08-08 | More thread.c cleanup. | Bruce Momjian | |
2003-08-08 | More threading cleanups. | Bruce Momjian | |
2003-08-08 | more thread.c consistency. | Bruce Momjian | |
2003-08-08 | threads.c -> thread.c, be consistent. | Bruce Momjian | |
2003-08-08 | Remove space between function name and opening paren in pg_dump, for | Bruce Momjian | |
clarity. | |||
2003-08-08 | Fix floating-point timestamp comparisons to not go nuts if NaN is | Tom Lane | |
encountered; per bug report from Christian van der Leeden 8/7/03. Also, adjust larger/smaller routines (MAX/MIN) to share code with comparisons for timestamp, interval, timetz. | |||
2003-08-07 | Clean up function header. | Bruce Momjian | |
2003-08-07 | Don't assume that struct option is available just because we can find a | Tom Lane | |
getopt_long(). This is more or less the same problem as we saw earlier with getaddrinfo() and struct addrinfo, and for the same reason: random user-added libraries might contain the subroutine, but there's no guarantee we will find the matching header files. | |||
2003-08-07 | SCO_ACCEPT_BUG code didn't get updated for new SockAddr struct definition. | Tom Lane | |
2003-08-07 | create_unique_plan() should not discard existing output columns of the | Tom Lane | |
subplan it starts with, as they may be needed at upper join levels. See comments added to code for the non-obvious reason why. Per bug report from Robert Creager. | |||
2003-08-07 | Don't use HAVE_STRUCT_ADDRINFO as a guide to whether netdb.h defines | Tom Lane | |
macros like AI_NUMERICHOST; instead, test the macros individually. Should fix recent reports of trouble on AIX and Unixware. | |||
2003-08-07 | Make table column type TEXT. | Bruce Momjian | |
2003-08-07 | Add iteration option to thread test program. | Bruce Momjian | |
2003-08-07 | Update pgindent readme. | Bruce Momjian | |
2003-08-07 | Remove unnecessary use of multiple cat processes to feed psql; this | Tom Lane | |
reduces the number of concurrent processes launched during parallel regression tests, possibly avoiding failures such as exceeding a user's max number of processes. This essentially completes the reversion of 1.27->1.28. | |||
2003-08-07 | Update typedef names for pgindent 7.4. | Bruce Momjian | |
2003-08-07 | Update ecpg thread testing program to be more automated. | Bruce Momjian | |
2003-08-07 | Include postgres_ext.h instead of postgres_fe.h. This allows ecpg | Bruce Momjian | |
output C files to proper compile again. | |||
2003-08-07 | Add -lm for ecpg/pgtypeslib/Makefile link so -lm isn't required for ecpg | Bruce Momjian | |
compiles. | |||
2003-08-07 | Sometimes the third time is the charm. Third try to fix the sql injection | Barry Lind | |
vulnerability. This fix completely removes the ability (hack) of being able to bind a list of values in an in clause. It was demonstrated that by allowing that functionality you open up the possibility for certain types of sql injection attacks. The previous fix attempts all focused on preventing the insertion of additional sql statements (the semi-colon problem: xxx; any new sql statement here). But that still left the ability to change the where clause on the current statement or perform a subselect which can circumvent applicaiton security logic and/or allow you to call any stored function. Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java | |||
2003-08-06 | Rename fields of DestReceiver to avoid collisions with (ill-considered) | Tom Lane | |
macros in some platforms' sys/socket.h. | |||
2003-08-06 | Adopt a random backoff algorithm for sleep delays when waiting for a | Tom Lane | |
spinlock. Per recent pghackers discussion. | |||
2003-08-06 | Fix compiler-detected problem for Alphas: it seems strlen returns | Tom Lane | |
something wider than int on that platform. Also, remove bogus assumption that sizeof("INT_MAX") has something to do with the maximum number of digits in an int. | |||
2003-08-06 | Applied patch from kho@redhat.com to fix a problem with trying to use a fetch | Barry Lind | |
when a cursor wasn't being used. Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java | |||
2003-08-06 | Add ecpg thread testing file. | Bruce Momjian | |
2003-08-05 | Improve documentation of ParseDateTime(). Reorder tests to prevent | Tom Lane | |
writing one more value into return arrays than will fit. This is potentially a stack smash, though I do not think it is a problem in current uses of the routine, since a failure return causes elog anyway. | |||
2003-08-05 | Fix several places where fractional-second inputs were misprocessed | Tom Lane | |
in HAVE_INT64_TIMESTAMP cases, including two potential stack smashes when more than six fractional digits were supplied. Per bug report from Philipp Reisner. | |||
2003-08-04 | Fix some copyright notices that weren't updated. Improve copyright tool | Tom Lane | |
so it won't miss 'em again. | |||
2003-08-04 | Re-add USE_THREADS, used by ecpg. | Bruce Momjian | |
2003-08-04 | Must print server's failure message before trying reconnect, not after. | Tom Lane | |
2003-08-04 | Fix pltcl and plpython to support STATEMENT triggers. | Tom Lane | |
Joe Conway | |||
2003-08-04 | SSL_read/SSL_write do not approximate the return conventions of recv() | Tom Lane | |
and send() very well at all; and in any case we can't use retval==0 for EOF due to race conditions. Make the same fixes in the backend as are required in libpq. | |||
2003-08-04 | Fix some more problems with testing error returns from SSL. | Tom Lane | |
2003-08-04 | Fix thread handling in configure. | Bruce Momjian | |
2003-08-04 | Minor cleanups in S_LOCK_TEST code. | Tom Lane | |
2003-08-04 | HPUX's horology behavior is OS-dependent, not hardware-dependent. | Tom Lane | |
2003-08-04 | Translation updates | Peter Eisentraut | |