- 06 Mar, 2006 7 commits
-
-
Bruce Momjian authored
> o Add COPY TO STDIN / STDOUT handling
-
Bruce Momjian authored
remain as part of the multi-line query.
-
Bruce Momjian authored
< * %Disallow changing sequence characteristics like INCREMENT for SERIAL columns > * %Disallow ALTER SEQUENCE changes for SERIAL sequences because pg_dump > does not dump the changes
-
Bruce Momjian authored
> * %Disallow changing sequence characteristics like INCREMENT for SERIAL columns
-
Bruce Momjian authored
-
Bruce Momjian authored
returning "ASCII code of the first character of the argument" (see http://www.postgresql.org/docs/8.1/interactive/functions-string.html, Table 9-6. "Other String Functions"). Presumably this should read "ASCII code of the first byte of the argument", which is what is returned when the argument is a multi-byte character (although then with UTF-8 at least that might not necessarily be an ASCII code). Ian Barwick
-
Bruce Momjian authored
statements before the multi-line statement, rather than inside the multi-line statement.
-
- 05 Mar, 2006 9 commits
-
-
Neil Conway authored
columns of the grouping clause to avoid redundant sorts. The optimizer is not currently capable of doing this, so this patch implements a simple hack in the analysis phase (transformGroupClause): if any subset of the GROUP BY clause matches a prefix of the ORDER BY list, that prefix is moved to the front of the GROUP BY clause. This shouldn't change the semantics of the query, and allows a redundant sort to be avoided for queries like "GROUP BY a, b ORDER BY b".
-
Bruce Momjian authored
> o Port contrib/xml2
-
Andrew Dunstan authored
Prepared queries for PLPerl, plus fixing a small plperl memory leak. Patch and docs from Dmitry Karasik, slightly editorialised.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> o -Add "include file" functionality in postgresql.conf
-
Bruce Momjian authored
variable.
-
Bruce Momjian authored
Add DLLIMPORT for V1 headers, in case Win32 don't export all symbols.
-
Tom Lane authored
example of /etc/sysctl.conf contents.
-
- 04 Mar, 2006 11 commits
-
-
Tom Lane authored
Patch by Joachim Wieland, somewhat reworked for clarity and portability.
-
Tom Lane authored
This is consistent with the standard definition of fopen().
-
Tom Lane authored
In particular, ensure that enlargement of the memtuples[] array doesn't fall foul of MaxAllocSize when work_mem is very large, and don't bother enlarging it if that would force an immediate switch into 'tape' mode anyway.
-
Tom Lane authored
per report from Stefan Kaltenbrunner.
-
Tom Lane authored
we'll go over to disk-based sort if we reach that limit. This fixes Stefan Kaltenbrunner's observation that sorting can suffer an 'invalid memory alloc request size' failure when sort_mem is set large enough. It's unfortunately not so easy to fix in 8.1 ...
-
Tatsuo Ishii authored
sequence such as "0x95 0x27". Patches from Akio Ishida. Also update copyright notice.
-
Bruce Momjian authored
> * Allow FSM page return free space based on table clustering, to assist > in maintaining clustering?
-
Bruce Momjian authored
> type Wouldn't it be better to use the UINT64CONST macro? I realize this file is Windows-only, but we do worry about more than one compiler on that platform. Kris Jurka
-
Bruce Momjian authored
> just that certain commands do. TRUNCATE isn't shown. Patch against HEAD to add TRUNCATE to the list of commands that aquire ACCESS EXCLUSIVE. Jim C. Nasby, Sr.
-
Bruce Momjian authored
-
Bruce Momjian authored
descriptions after the code are correct). Only shmmax needs to be multiples of the page size (at least, that's how I interpret the Darwin code). Chris Campbell
-
- 03 Mar, 2006 13 commits
-
-
Bruce Momjian authored
gettimeofday.c:35: warning: integer constant is too large for "long" type Kris Jurka
-
Bruce Momjian authored
/dev/tty, but it isn't a device file and doesn't work as expected. This fixes a known bug where psql does not prompt for a password on some Win32 systems. Backpatch to 8.1.X. Robert Kinberg
-
Tom Lane authored
instead of the old deprecated ones. Volkan Yazici, with some editorializing by moi.
-
Bruce Momjian authored
Hiroshi Saito
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
have. This happens when MSVC uses pg_config.h generated by MinGW. Per report from Charles F. I. Savage
-
Tom Lane authored
and tighten up its sanity checking of the tag as a safety measure. Volkan Yazici.
-
Bruce Momjian authored
-
Bruce Momjian authored
> * -Allow TRUNCATE ... CASCADE/RESTRICT
-
Bruce Momjian authored
< o %Have COPY return the number of rows loaded/unloaded? > o -Have COPY return the number of rows loaded/unloaded?
-
Tom Lane authored
rows copied. Backend side of Volkan Yazici's recent patch, with corrections and documentation.
-
Tom Lane authored
relations are still checked for permissions etc as soon as they are opened. The original form of the patch could hold exclusive lock for a long time on relations that the user doesn't even have permissions to access, let alone truncate.
-