- 02 Jun, 2002 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 01 Jun, 2002 4 commits
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
> * Add FILLFACTOR to btree index creation
-
Thomas G. Lockhart authored
precision storage format. Previously applied the same math as used for the 64-bit integer storage format case, which was wrong. Problem introduced recently when the 64-bit storage format was implemented.
-
- 30 May, 2002 3 commits
-
-
Tom Lane authored
-
Dave Cramer authored
-
Dave Cramer authored
-
- 29 May, 2002 4 commits
-
-
Tom Lane authored
a multicolumn-capable index AM *must* support nulls in index columns after the first one.
-
Tom Lane authored
-
Tom Lane authored
that would do the wrong thing with BLOB OIDs exceeding 2G.
-
Bruce Momjian authored
> * Add BSD-licensed qsort() for Solaris
-
- 28 May, 2002 8 commits
-
-
Tom Lane authored
one immediately upon forking to handle a new connection, and one after the authentication cycle is finished. Per today's pggeneral discussion.
-
Tom Lane authored
having names conflicting with system objects will work --- the search path is now user-schema, pg_catalog rather than implicitly the other way around. Note this requires being careful to explicitly qualify references to system names whenever pg_catalog is not first in the search path. Also, add support for dumping ACLs of schemas.
-
Tom Lane authored
-
Tom Lane authored
quotes only when necessary.
-
Peter Eisentraut authored
Makefile.shlib system, not MakeMaker.
-
Tom Lane authored
Patch from Teodor Sigaev.
-
Tom Lane authored
Patch from Teodor Sigaev.
-
Bruce Momjian authored
> * Add BSD-licensed qsort() for 32-bit Solaris
-
- 27 May, 2002 2 commits
-
-
Tom Lane authored
From Joe Conway.
-
Tom Lane authored
where the latter is made slightly larger to allow for in-memory tuples containing resjunk attributes. Responds to today's complaint that one cannot UPDATE a table containing the allegedly-legal maximum number of columns. Also, apply Manfred Koizar's recent patch to avoid extra alignment padding when there is a null bitmap. This saves bytes in some cases while not creating any backward-compatibility problem AFAICS.
-
- 25 May, 2002 3 commits
-
-
Bruce Momjian authored
> * Add getpid() function to backend
-
Tom Lane authored
and just slow down normal operations (only fractionally, but a cycle saved is a cycle earned). Improve documentation of AMI_OVERRIDE behavior.
-
Tom Lane authored
-
- 24 May, 2002 5 commits
-
-
Tom Lane authored
-
Tom Lane authored
wasn't seen before, maybe the Tcl compiler flags were less strict.
-
Tom Lane authored
-
Tom Lane authored
transaction, so as to avoid returning them out of the index AM. Saves repeated heap_fetch operations on frequently-updated rows. Also detect queries on unique keys (equality to all columns of a unique index), and don't bother continuing scan once we have found first match. Killing is implemented in the btree and hash AMs, but not yet in rtree or gist, because there isn't an equally convenient place to do it in those AMs (the outer amgetnext routine can't do it without re-pinning the index page). Did some small cleanup on APIs of HeapTupleSatisfies, heap_fetch, and index_insert to make this a little easier.
-
Peter Eisentraut authored
system, not Tcl-provided one. Make sure export file, if any, is cleaned. Tcl configuration is now read directly in configure and recorded in Makefile.global. This eliminates some duplicate efforts and allows for easier hand-editing of the results, if necessary.
-
- 22 May, 2002 8 commits
-
-
Tom Lane authored
to do profiling on Cygwin, per report from Dave Page.
-
Tom Lane authored
exemplified by bug #671. Moving the storage to relcache turned out to be a bad idea because relcache might decide to discard the info. Instead, open and close the relcache entry on each sequence operation, and use a record of the current XID to discover whether we already hold AccessShareLock on the sequence.
-
Tom Lane authored
-
Peter Eisentraut authored
function body (and other properties) as a function in the language is created. This generalizes ad hoc code that already existed for the built-in languages. The validation now happens after the pg_proc tuple of the new function is created, so it is possible to define recursive SQL functions. Add some regression test cases that cover bogus function definition attempts.
-
Tom Lane authored
reference count. This avoids leaving dangling pointers around, as in recent bug report against sequences (bug# 671).
-
Tom Lane authored
-
Hiroshi Inoue authored
CREATE VIEW as SELECT CTID, .... SELECT currtid( a view, ..).
-
Hiroshi Inoue authored
2) Supprt ARD precision/scale and SQL_C_NUEMRIC. 3) Minimal implementation of SQLGetDiagField(). 4) SQLRowCount() reports the result of SQLSetPos and SQLBulkOperation. 5) int8 -> SQL_NUMERIC for Microsoft Jet. 6) Support isolation level change. 7) ODBC3.0 SQLSTATE code. 8) Append mode log files.
-