- 12 Dec, 2005 1 commit
-
-
Teodor Sigaev authored
- tsvector_(in|out) - tsquery_(in|out) - to_tsvector - to_tsquery, plainto_tsquery - 'simple' dictionary
-
- 11 Dec, 2005 3 commits
-
-
Tom Lane authored
reduce contention for the former single LockMgrLock. Per my recent proposal. I set it up for 16 partitions, but on a pgbench test this gives only a marginal further improvement over 4 partitions --- we need to test more scenarios to choose the number of partitions.
-
Neil Conway authored
Patch from Pavel Stehule, minor fixups by myself.
-
Bruce Momjian authored
< * Add GUC variable to run a command on database panic or < smart/fast/immediate shutdown
-
- 10 Dec, 2005 2 commits
- 09 Dec, 2005 12 commits
-
-
Bruce Momjian authored
< * Allow installing to directories containing spaces > * -Allow installing to directories containing spaces
-
Peter Eisentraut authored
-
Tom Lane authored
Also minor improvements to 8.1.1 release notes.
-
Bruce Momjian authored
integrity actions. Stephan Szabo
-
Bruce Momjian authored
has been that way for a long time.
-
Tom Lane authored
-
Tom Lane authored
introduced a copy-and-pasteo while trying to simplify the code.
-
Bruce Momjian authored
* -Have initdb set the input DateStyle (MDY or DMY) based on locale
-
Peter Eisentraut authored
datestyle parameter of the new cluster accordingly.
-
Bruce Momjian authored
However, Another problem newly occurred. This solves the problem of snprintf and vsnprintf. Patch to HEAD and 8.1.X. Hiroshi Saito
-
Bruce Momjian authored
Win32 library files.
-
Tom Lane authored
the data defining the semantics of a lock method (ie, conflict resolution table and ancillary data, which is all constant) and the hash tables storing the current state. The only thing we give up by this is the ability to use separate hashtables for different lock methods, but there is no need for that anyway. Put some extra fields into the LockMethod definition structs to clean up some other uglinesses, like hard-wired tests for DEFAULT_LOCKMETHOD and USER_LOCKMETHOD. This commit doesn't do anything about the performance issues we were discussing, but it clears away some of the underbrush that's in the way of fixing that.
-
- 08 Dec, 2005 21 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Teodor is Teodor Sigaev <teodor@sigaev.ru>
-
Bruce Momjian authored
< * Claudio is Claudio Natoli <claudio.natoli@memetrics.com> 1166d1164 < * Hiroshi is Hiroshi Inoue <Inoue@tpf.co.jp>
-
Bruce Momjian authored
postgres problems due to readline. The attached patch replaces that section of it with better ways of handling the problem. Seneca Cunningham
-
Bruce Momjian authored
DROP CONSTRAINT This form drops constraints on a table. Currently, constraints on tables are not required to have unique names, so there may be more than one constraint matching the specified name. All matching constraints will be dropped. To my knowledge, it is no longer possible to create constraints with the same name for the same relation. When you create a constraint and specify the same name explictly, an error is raised. Implicit constraint creation won't choose an existing name either and up to now you could not rename a constraint. Renaming works with the patch I sent in a few hours ago but this patch as well won't allow constraints with identical names on the same relation. The attached patch thus removes the note in the docs. Joachim Wieland
-
Bruce Momjian authored
> Now, the arguments of the drop function can be tab completed. for example > > drop function strpos ( > <press tab> > drop FUNCTION strpos (text, text) > > or: > > wsdb=# drop FUNCTION length ( > bit) bytea) character) lseg) path) text) > <press c> > wsdb# DROP FUNCTION length ( character) > > I think that this patch should be rather useful. At it least I hate > always to type all the arguments of the dropped functions. > > 2) Also some fixes applied for the > CREATE INDEX syntax > > now the parenthesises are inserted by tab pressing. > suppose I have the table q3c: Sergey E. Koposov
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
Also, better mark section headings. kdio@uenf.br
-
Peter Eisentraut authored
-
Tom Lane authored
error. This probably explains bug #2099 and could also account for mysterious VACUUM hangups.
-
Bruce Momjian authored
support for the dbf2pg contrib module. The submitter created a patch which replaces the silent ignoring of -F (when iconv support is disabled) with a meaningful warning. Martin Pitt
-
Bruce Momjian authored
that are the same as column names used in the function.
-
Bruce Momjian authored
I have the problem, when building by MS-VC6. An error occurs in the 8.1.0 present source codes. nmake -f win32.mak ..\..\port\getaddrinfo.c(244) : error C2065: 'WSA_NOT_ENOUGH_MEMORY' ..\..\port\getaddrinfo.c(342) : error C2065: 'WSATYPE_NOT_FOUND' This is used by winsock2.h. However, Construction of a windows base is winsock.h. Then, Since MinGW has special environment, this is right. but, it is not found in VC6. Furthermore, in getaddrinfo.c, IPV6-API is used by LoadLibraryA("ws2_32"); Referring to of dll the external memory generates this violation by VC6 specification. I considered whether the whole should have been converted into winsock2. However, Now, DLL of MinGW creation operates wonderfully as it is. That's right, it has pliability by replacement of simple DLL. Then, I propose the system using winsock(non IPV6) in construction of VC6. Hiroshi Saito
-
Tom Lane authored
-
Teodor Sigaev authored
-
- 07 Dec, 2005 1 commit
-
-
Tom Lane authored
_bt_checkkeys(), instead of checking it in the top-level nbtree.c routines as formerly. This saves a little bit of loop overhead, but more importantly it lets us skip performing the index key comparisons for dead tuples.
-