- 04 Mar, 2006 5 commits
-
-
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 22 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.
-
Bruce Momjian authored
Fixes problem with 'su' on some platforms.
-
Neil Conway authored
-
Tom Lane authored
-
Bruce Momjian authored
> * Allow FSM to return free space toward the beginning of the heap file, > in hopes that empty pages at the end can be truncated by VACUUM
-
Bruce Momjian authored
ROLE page, based on what Tom Lane told me here: http://archives.postgresql.org/pgsql-general/2005-11/msg00998.php Joachim Wieland
-
Bruce Momjian authored
> * Add missing parameter handling in to_char() > > http://archives.postgresql.org/pgsql-hackers/2005-12/msg00948.php >
-
Bruce Momjian authored
> * Allow to_date() and to_timestamp() accept localized month names
-
Bruce Momjian authored
-
Tom Lane authored
checkpoint in the bgwriter. This forestalls overflow of the fsync request queue, which is not fatal but causes considerable performance degradation when it occurs (because backends then have to do their own fsyncs). Per patch from Itagaki Takahiro, modified a little bit by me.
-
- 02 Mar, 2006 13 commits
-
-
Tom Lane authored
a need for it back in the neolithic era, but it's certainly dead code in any PG release we would recognize as such. Since it forces an additional network round trip to the backend, getting rid of it should provide some small performance improvement for large-object-using clients.
-
Tom Lane authored
was opening with INV_READ flag and then writing. Prior to 8.1 the backend did not reject this, but now it does.
-
Tom Lane authored
them to use array_recv :-(. Per report from Tim Kordas.
-
Bruce Momjian authored
/etc/sysctl.conf. Chris Campbell
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Teodor Sigaev authored
1) rank_cd now use weight of lexemes 2) rank_cd and rank can use any combination of normalization methods: no normalization normalization by log(length of document) -----/------- by length of document -----/------- by number of unique word in document -----/------- by log(number of unique word in document) -----/------- by number of covers (only rank_cd) Improve cover's search. TODO: changes in documentation
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Improve port/qsort() to handle sorts with 50% unique and 50% duplicate > value [qsort] > > This involves choosing better pivot points for the quicksort.
-
Tom Lane authored
then modified within the same transaction. The code was using a linked list of active PLpgSQL_expr structs, which was OK when it was written because plpgsql never released any parse data structures for the life of the backend. But since Neil fixed plpgsql's memory management, elements of the linked list could be freed, leading to crash when the list is chased. Per report and test case from Kris Jurka.
-
Tom Lane authored
make use of the recently added ability to create a shell type explicitly. I also put in place some infrastructure to allow dump/no dump decisions to be made separately for each database object, rather than the former hardwired 'dump if in a dumpable schema' policy. This was needed anyway for shell types so now seemed a convenient time to do it. The flexibility isn't exposed to the user yet, but is ready for future extensions.
-