summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2005-05-10Regression tests for the COPY CSV header feature. From Andrew Dunstan.Neil Conway
2005-05-09Update "expected" regression test output for the recent stats collectorNeil Conway
checkin. My apologies for breaking the tests.
2005-05-09Fix duplicate call to WRITE_NODE_FIELD(whereClause) in _outSelectStmtTatsuo Ishii
2005-05-09Add some defenses against functions declared to return set that don'tTom Lane
actually follow the protocol; per example from Kris Jurka.
2005-05-09Complete the following TODO items:Neil Conway
* Add session start time to pg_stat_activity * Add the client IP address and port to pg_stat_activity Original patch from Magnus Hagander, code review by Neil Conway. Catalog version bumped. This patch sends the client IP address and port number in every statistics message; that's not ideal, but will be fixed up shortly.
2005-05-08Update release checklist to reflect that HISTORY and INSTALL don'tTom Lane
need to be created by hand anymore.
2005-05-07Repair very-low-probability race condition between relation extensionTom Lane
and VACUUM: in the interval between adding a new page to the relation and formatting it, it was possible for VACUUM to come along and decide it should format the page too. Though not harmful in itself, this would cause data loss if a third transaction were able to insert tuples into the vacuumed page before the original extender got control back.
2005-05-07Adjust time qual checking code so that we always check TransactionIdIsInProgressTom Lane
before we check commit/abort status. Formerly this was done in some paths but not all, with the result that a transaction might be considered committed for some purposes before it became committed for others. Per example found by Jan Wieck.
2005-05-07Fix case in which a debug printout would print already-pfreed data.Tom Lane
2005-05-07Add comment on C locale test for upper/lower/initcap().Bruce Momjian
2005-05-07Add COPY WITH CVS HEADER to allow a heading line as the first line inBruce Momjian
COPY. Andrew Dunstan
2005-05-06Update backend flowchart HTML.Bruce Momjian
2005-05-06Update flowchart sections to match current CVS.Bruce Momjian
2005-05-06Markup improvements.Bruce Momjian
2005-05-06Update backend flowchard wordingBruce Momjian
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
which is neither needed by nor related to that header. Remove the bogus inclusion and instead include the header in those C files that actually need it. Also fix unnecessary inclusions and bad inclusion order in tsearch2 files.
2005-05-06Update comment to mention "Name classification hierarchy" as place toBruce Momjian
check for reserved words.
2005-05-06Convert some mulit-line comments in copy.c to single line, as appropriate.Bruce Momjian
2005-05-06Marginal performance improvements in dynahash: make sure that everythingTom Lane
associated with a hashtable is allocated in that hashtable's private context, so that hash_destroy only has to destroy the context and not do any retail pfree's; and tighten the inner loop of hash_seq_search.
2005-05-05Fix bogus hashtable setup. (This code has quite a few other problemsTom Lane
too, but that one is in my way at the moment.)
2005-05-05Make standalone backends ignore pg_database.datallowconn, so that thereTom Lane
is a way to recover from disabling connections to all databases at once.
2005-05-05Add comments on WSAStartup usage.Bruce Momjian
2005-05-05Add WSACleanup() for Win32 socket cleanup.Bruce Momjian
Jason Erickson
2005-05-05Adjust nodeBitmapIndexscan to keep the target index opened from planTom Lane
startup to end, rather than re-opening it in each MultiExecBitmapIndexScan call. I had foolishly thought that opening/closing wouldn't be much more expensive than a rescan call, but that was sheer brain fade. This seems to fix about half of the performance lossage reported by Sergey Koposov. I'm still not sure where the other half went.
2005-05-05Allow implicit cast from any named composite type to RECORD. At theTom Lane
moment this has no particular use except to allow table rows to be passed to record_out(), but that case seems to be useful in itself per recent example from Elein. Further down the road we could look at letting PL functions be declared to accept RECORD parameters.
2005-05-04Use postmaster_is_alive() check in pg_ctl restart as well as pg_ctl status,Tom Lane
so that restart doesn't fail when old postmaster died unbetimes.
2005-05-04Spell DELIMITER correctly, per Seamus Dean.Tom Lane
2005-05-03Clean up MultiXactIdExpand's API by separating out the case where weTom Lane
are creating a new MultiXactId from two regular XIDs. The original coding was unnecessarily complicated and didn't save any code anyway.
2005-05-03Alter the signature for encoding conversion functions to declare theTom Lane
output area as INTERNAL not CSTRING. This is to prevent people from calling the functions by hand. This is a permanent solution for the back branches but I hope it is just a stopgap for HEAD.
2005-05-03Change tsearch2 to not use the unsafe practice of creating functionsTom Lane
that return INTERNAL without also having INTERNAL arguments. Since the functions in question aren't meant to be called by hand anyway, I just redeclared them to take 'internal' instead of 'text'. Also add code to ProcedureCreate() to enforce the restriction, as I should have done to start with :-(
2005-05-02Check the file system on postmaster startup and report any unreferencedBruce Momjian
files in the server log. Heikki Linnakangas
2005-05-02Change SPI functions to use a `long' when specifying the number of tuplesNeil Conway
to produce when running the executor. This is consistent with the internal executor APIs (such as ExecutorRun), which also use a long for this purpose. It also allows FETCH_ALL to be passed -- since FETCH_ALL is defined as LONG_MAX, this wouldn't have worked on platforms where int and long are of different sizes. Per report from Tzahi Fadida.
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
only one argument. (Per recent discussion, the option to accept multiple arguments is pretty useless for user-defined types, and would be a likely source of security holes if it was used.) Simplify call sites of output/send functions to not bother passing more than one argument.
2005-05-01Remove the contents of the src/corba subdirectory: this has been dead codeNeil Conway
for a long time.
2005-04-30Change catalog entries for record_out and record_send to show only oneTom Lane
argument, since that's all they are using now. Adjust type_sanity regression test so that it will complain if anyone tries to define multiple-argument output functions in future.
2005-04-30Make record_out and record_send extract type information from the passedTom Lane
record object itself, rather than relying on a second OID argument to be correct. This patch just changes the function behavior and not the catalogs, so it's OK to back-patch to 8.0. Will remove the now-redundant second argument in pg_proc in a separate patch in HEAD only.
2005-04-30Use the standard lock manager to establish priority order when thereTom Lane
is contention for a tuple-level lock. This solves the problem of a would-be exclusive locker being starved out by an indefinite succession of share-lockers. Per recent discussion with Alvaro.
2005-04-30GCC 4.0 includes a new warning option, -Wformat-literal, that emitsNeil Conway
a warning when a variable is used as a format string for printf() and similar functions (if the variable is derived from untrusted data, it could include unexpected formatting sequences). This emits too many warnings to be enabled by default, but it does flag a few dubious constructs in the Postgres tree. This patch fixes up the obvious variants: functions that are passed a variable format string but no additional arguments. Most of these are harmless (e.g. the ruleutils stuff), but there is at least one actual bug here: if you create a trigger named "%sfoo", pg_dump will read uninitialized memory and fail to dump the trigger correctly.
2005-04-30Fix BCC to not define compiler location.Bruce Momjian
2005-04-29Restructure LOCKTAG as per discussions of a couple months ago.Tom Lane
Essentially, we shoehorn in a lockable-object-type field by taking a byte away from the lockmethodid, which can surely fit in one byte instead of two. This allows less artificial definitions of all the other fields of LOCKTAG; we can get rid of the special pg_xactlock pseudo-relation, and also support locks on individual tuples and general database objects (including shared objects). None of those possibilities are actually exploited just yet, however. I removed pg_xactlock from pg_class, but did not force initdb for that change. At this point, relkind 's' (SPECIAL) is unused and could be removed entirely.
2005-04-29Remove extern from optreset that was just added.Bruce Momjian
2005-04-29Improve cleanup from win32 client-only build.Bruce Momjian
2005-04-29Backpatch BCC compile changes to 8.0.X for psql.Bruce Momjian
2005-04-29This patch fixes a bug in the error message emitted by pg_restore on anNeil Conway
incorrect -F argument: write_msg() expects its first parameter to be a "module name", not the format string.
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
to eliminate unnecessary deadlocks. This commit adds SELECT ... FOR SHARE paralleling SELECT ... FOR UPDATE. The implementation uses a new SLRU data structure (managed much like pg_subtrans) to represent multiple- transaction-ID sets. When more than one transaction is holding a shared lock on a particular row, we create a MultiXactId representing that set of transactions and store its ID in the row's XMAX. This scheme allows an effectively unlimited number of row locks, just as we did before, while not costing any extra overhead except when a shared lock actually has to be shared. Still TODO: use the regular lock manager to control the grant order when multiple backends are waiting for a row lock. Alvaro Herrera and Tom Lane.
2005-04-28Fix a whitespace problem. From Alvaro Herrera.Dennis Bjorklund
2005-04-28Add psql \set ON_ERROR_ROLLBACK to allow statements in a transaction toBruce Momjian
error without affecting the entire transaction. Valid values are "on|interactive|off".
2005-04-25On further experimentation, there were still a couple of bugs inTom Lane
ExpandIndirectionStar() ... and in markTargetListOrigin() too.
2005-04-25Fix ExpandIndirectionStar to handle cases where the expression to beTom Lane
expanded is of RECORD type, eg 'select (foo).* from (select foo(f1) from t1) ss' where foo() is a function declared with multiple OUT parameters.
2005-04-25get_expr_result_type probably needs to be able to handle OpExpr as wellTom Lane
as FuncExpr, to cover cases where a function returning tuple is invoked via an operator.