- 21 May, 2008 3 commits
-
-
Magnus Hagander authored
compiler warnings on msvc.
-
Magnus Hagander authored
Windows, for better performance. Per suggestion from Andrew Chernow, but not his patch since the underlying code was changed to deal with return values.
-
Michael Meskes authored
-
- 20 May, 2008 4 commits
-
-
Michael Meskes authored
Made ecpg parser use backend provided keyword list. Changed whenever test so exit value is 0.
-
Tom Lane authored
libreadline. What we will do for compatibility :-(
-
Bruce Momjian authored
modify the passed string.
-
Bruce Momjian authored
< o Use LC_TIME for localized weekday/month names, rather than > o -Use LC_TIME for localized weekday/month names, rather than
-
- 19 May, 2008 3 commits
-
-
Heikki Linnakangas authored
to go beoynd 10MB, as demonstrated by Gavin Sharry's example of dropping a schema with ~25000 objects. The really bogus thing about the limit was that it was enforced when a state file file was read in, not when it was written, so you would end up with a prepared transaction that you can't commit or abort, and the only recourse was to shut down the server and remove the file by hand. Raise the limit to MaxAllocSize, and enforce it also when a state file is written. We could've removed the limit altogether, but reading in a file larger than MaxAllocSize would fail anyway because we read it into a palloc'd buffer. Backpatch down to 8.1, where 2PC and this issue was introduced.
-
Tom Lane authored
Euler Taveira de Oliveira
-
Tom Lane authored
example from Rod Taylor. On reflection the correct test here is for any polymorphic type, not specifically ANYARRAY as in the original coding.
-
- 18 May, 2008 3 commits
-
-
Tom Lane authored
shared libraries. We've tried this before and had problems with libreadline not linking properly on some platforms, but that seems to be a libreadline bug that may have been fixed by now. In any case, it's early enough in the 8.4 devel cycle that we can afford to have some transient breakage while we work out any portability problems. On Darwin, we try -Wl,-dead_strip_dylibs, which seems to be the equivalent incantation there.
-
Andrew Dunstan authored
found to have been made necessary by our skipping tty detection on Windows. Now that we are doing tty detection on Windows the kluge is unnecessary and wrong.
-
Tom Lane authored
Per buildfarm results.
-
- 17 May, 2008 13 commits
-
-
Tom Lane authored
IDENTITY to be more explicit about the possible hazards. Per gripe from Neil and subsequent discussion. Eventually we may be able to get rid of this warning, but for now it had better be there.
-
Bruce Momjian authored
that platform.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
-
Tom Lane authored
Per buildfarm results.
-
Tom Lane authored
exits with nonzero status. The Windows part of this is untested ...
-
Tom Lane authored
spoonbill, though one wonders why it didn't misbehave everywhere. In passing remove some unnecessary modulo calculations.
-
Tom Lane authored
Formerly, the default value of wal_sync_method was determined inside xlog.c, but now it is determined inside guc.c. guc.c was reading xlogdefs.h without having read <fcntl.h>, leading to wrong determination of DEFAULT_SYNC_METHOD. Obviously xlogdefs.h needs to include <fcntl.h> for itself to ensure stable results.
-
Tom Lane authored
-
Andrew Dunstan authored
-
Andrew Dunstan authored
This particular batch was just for *.c and *.h file. The changes were made with the following 2 commands: find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *' find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */'
-
Tom Lane authored
sequence. This seems an obvious extension to the recent patch, and it makes the code noticeably cleaner and more orthogonal.
-
- 16 May, 2008 14 commits
-
-
Tom Lane authored
-
Tom Lane authored
sequence to be reset to its original starting value. This requires adding the original start value to the set of parameters (columns) of a sequence object, which is a user-visible change with potential compatibility implications; it also forces initdb. Also add hopefully-SQL-compatible RESTART/CONTINUE IDENTITY options to TRUNCATE TABLE. RESTART IDENTITY executes ALTER SEQUENCE RESTART for all sequences "owned by" any of the truncated relations. CONTINUE IDENTITY is a no-op option. Zoltan Boszormenyi
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
on Apple's gcc and not my other machines, but still it seems worth getting rid of.)
-
Magnus Hagander authored
should always succeed, but in the likely event of a failure we would previously fall through *without locking* - the new code will exit(1). Printing the error message on stderr will not work for all applications, but it's better than nothing at all - and our API doesn't provide a way to return the error to the caller.
-
Tom Lane authored
-
Tom Lane authored
-
Bruce Momjian authored
Add a few "help" entries. Move \g help entry into "General". Update psql version mismatch warning text. Joshua D. Drake
-
Bruce Momjian authored
> o -Have \l+ show database size, if permissions allow
-
Bruce Momjian authored
detection for wrapped lines or lines with newlines that need pager to display.
-
Tom Lane authored
prefix matching using this facility. Teodor Sigaev and Oleg Bartunov
-
Peter Eisentraut authored
Author: Euler Taveira de Oliveira <euler@timbira.com>
-
Bruce Momjian authored
PL/pgSQL > o -Add CASE capability to language (already in SQL)
-