summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-03-28Fix compiler warnings in ereport messages on mingw.Magnus Hagander
ITAGAKI Takahiro
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
seen by code inspecting the expression. The best way to do this seems to be to drop the original representation as a function invocation, and instead make a special expression node type that represents applying the element-type coercion function to each array element. In this way the element function is exposed and will be checked for volatility. Per report from Guillaume Smet.
2007-03-27Install import libraries used to link to libpq, ecpg and the backend.Magnus Hagander
2007-03-27Cosmetic changes: rename some struct fields, and move the fetching of pgstatAlvaro Herrera
table entries to a separate routine. Don't pass the pgstat database entry to do_autovacuum; rather, have it fetch it by itself.
2007-03-27Fix typo in Makefile.Bruce Momjian
Marko Kreen
2007-03-27Fix typo, ensable -> enable, per Steve Gieseking.Tom Lane
2007-03-26Remove Andrew Yu copyright, with permission from author.Bruce Momjian
2007-03-26Remove advertising clause from Berkeley BSD-licensed files, perBruce Momjian
instructions from Berkeley.
2007-03-26Allow non-superuser database owners to create procedural languages.Tom Lane
A DBA is allowed to create a language in his database if it's marked "tmpldbacreate" in pg_pltemplate. The factory default is that this is set for all standard trusted languages, but of course a superuser may adjust the settings. In service of this, add the long-foreseen owner column to pg_language; renaming, dropping, and altering owner of a PL now follow normal ownership rules instead of being superuser-only. Jeremy Drake, with some editorialization by Tom Lane.
2007-03-26Fix pg_wchar_table's maxmblen field of EUC_CN, EUC_TW, MULE_INTERNALTatsuo Ishii
and GB18030. patches from ITAGAKI Takahiro.
2007-03-26Seems some people have been forgetting to run autoheader.Tom Lane
2007-03-26Fix plancache's invalidation callback to do the right thing for a SITom Lane
reset event, namely invalidate everything. This oversight probably explains the rare failures that some buildfarm machines have been showing for the plancache regression test.
2007-03-25Make _SPI_execute_plan pass the query source string down to ProcessUtilityTom Lane
if possible. I had left this undone in the first pass at the API change for ProcessUtility, but forgot to revisit it after the plancache changes made it possible to do it.
2007-03-25Remove the prohibition on executing cursor commands through SPI_execute.Tom Lane
Vadim had included this restriction in the original design of the SPI code, but I'm darned if I can see a reason for it. I left the macro definition of SPI_ERROR_CURSOR in place, so as not to needlessly break any SPI callers that are checking for it, but that code will never actually be returned anymore.
2007-03-25Clean up the representation of special snapshots by including a "methodTom Lane
pointer" in every Snapshot struct. This allows removal of the case-by-case tests in HeapTupleSatisfiesVisibility, which should make it a bit faster (I didn't try any performance tests though). More importantly, we are no longer violating portable C practices by assuming that small integers are distinct from all pointer values, and HeapTupleSatisfiesDirty no longer has a non-reentrant API involving side-effects on a global variable. There were a couple of places calling HeapTupleSatisfiesXXX routines directly rather than through the HeapTupleSatisfiesVisibility macro. Since these places had to be changed anyway, I chose to make them go through the macro for uniformity. Along the way I renamed HeapTupleSatisfiesSnapshot to HeapTupleSatisfiesMVCC to emphasize that it's only used with MVCC-type snapshots. I was sorely tempted to rename HeapTupleSatisfiesVisibility to HeapTupleSatisfiesSnapshot, but forebore for the moment to avoid confusion and reduce the likelihood that this patch breaks some of the pending patches. Might want to reconsider doing that later.
2007-03-25Add new encoding EUC_JIS_2004 and SHIFT_JIS_2004,Tatsuo Ishii
along with new conversions among EUC_JIS_2004, SHIFT_JIS_2004 and UTF-8. catalog version has been bump up.
2007-03-24Support for installing NLS files, and update support to use gettextMagnus Hagander
from gnuwin32.
2007-03-24Install contrib sql and readme filesMagnus Hagander
2007-03-24Properly parse the name of contrib modules that aren't named the sameMagnus Hagander
way as their directory (notably xml2/pgxml and intarray/_int)
2007-03-23Set the node properly, per Tom.Alvaro Herrera
2007-03-23Separate the code to start a new worker into its own function. The code isAlvaro Herrera
exactly the same, modulo whitespace.
2007-03-23Separate fetch of pg_autovacuum tuple into its own function.Alvaro Herrera
2007-03-23We no longer need to palloc the VacuumStmt node; keeping it on the stack isAlvaro Herrera
simpler.
2007-03-23Adjust DatumGetBool macro so that it isn't fooled by garbage in the DatumTom Lane
to the left of the actual bool value. While in most cases there won't be any, our support for old-style user-defined functions violates the C spec to the extent of calling functions that might return char or short through a function pointer declared to return "char *", which we then coerce to Datum. It is not surprising that the result might contain garbage high-order bits ... what is surprising is that we didn't see such cases long ago. Per report from Magnus.
2007-03-23Fix plancache so that any required replanning is done with the sameTom Lane
search_path that was active when the plan was first made. To do this, improve namespace.c to support a stack of "override" search path settings (we must have a stack since nested replan events are entirely possible). This facility replaces the "special namespace" hack formerly used by CREATE SCHEMA, and should be able to support per-function search path settings as well.
2007-03-23Allow 4 bytes UTF-8 (UCS-4 range 00010000-001FFFFF)Tatsuo Ishii
This is necessary to support JIS X 0213 <--> UTF-8 conversion.
2007-03-23Forgot commit: support for special-cases in pgcryptoMagnus Hagander
2007-03-23Support for running contribcheck on msvcMagnus Hagander
2007-03-23Generate SQL files for /contrib (based on .sql.in)Magnus Hagander
2007-03-23Add define to exclude configured libraries, to be able to easily build aMagnus Hagander
stripped down version of libpq. To be used by the installer.
2007-03-23Remove headers for old sysv shmem emulation that I forgot.Magnus Hagander
Also remove headers for old sysv semaphore emulation that were forgotten when that was changed about a year ago.
2007-03-23Cleanup for procarray.c.Bruce Momjian
2007-03-22Add comment that pg_dump 'append' format is used only by pg_dump, perBruce Momjian
Dave Page.
2007-03-22Commit newest version of xmlpath().Bruce Momjian
Nikolay Samokhvalov
2007-03-22In pg_dump, strcasecmp -> pg_strcasecmp.Bruce Momjian
2007-03-22Add xmlpath() to evaluate XPath expressions, with namespaces support.Bruce Momjian
Nikolay Samokhvalov
2007-03-22Arrange for PreventTransactionChain to reject commands submitted as partTom Lane
of a multi-statement simple-Query message. This bug goes all the way back, but unfortunately is not nearly so easy to fix in existing releases; it is only the recent ProcessUtility API change that makes it fixable in HEAD. Per report from William Garrison.
2007-03-22Allow the pgstat process to restart immediately after a receivingBruce Momjian
SIGQUIT signal, rather than waiting for PGSTAT_RESTART_INTERVAL.
2007-03-22Allow DROP TABLESPACE to succeed (with a warning) if the pg_tblspc symlinkTom Lane
doesn't exist. This allows DROP to be used to clean out the pg_tablespace catalog entry in a situation where a previous DROP attempt failed before committing but after having removed the directories and symlink. Per report from William Garrison. Even though his test case depends on an unrelated bug in PreventTransactionChain, it's certainly possible for this situation to arise due to other problems, eg a system crash at just the right time.
2007-03-22Properly enforce pg_dump -F formation options; only single letter orBruce Momjian
full words support, per report from Mark Stosberg.
2007-03-22Remove the currently unused FRONTEND case in dllist.c. This allows the usageAlvaro Herrera
of palloc instead of malloc, which means a list can be freed simply by deleting the memory context that contains it.
2007-03-22Forgot to add file needed for PL regression testsMagnus Hagander
2007-03-21Fix some problems with selectivity estimation for partial indexes.Tom Lane
First, genericcostestimate() was being way too liberal about including partial-index conditions in its selectivity estimate, resulting in substantial underestimates for situations such as an indexqual "x = 42" used with an index on x "WHERE x >= 40 AND x < 50". While the code is intentionally set up to favor selecting partial indexes when available, this was too much... Second, choose_bitmap_and() was likewise easily fooled by cases of this type, since it would similarly think that the partial index had selectivity independent of the indexqual. Fixed by using predicate_implied_by() rather than simple equality checks to determine redundancy. This is a good deal more expensive but I don't see much alternative. At least the extra cost is only paid when there's actually a partial index under consideration. Per report from Jeff Davis. I'm not going to risk back-patching this, though.
2007-03-21Add support for running regression tests on procedural languagesMagnus Hagander
2007-03-21Properly return exitcode when regression tests fails.Magnus Hagander
2007-03-21Native shared memory implementation for win32.Magnus Hagander
Uses same underlying tech as before, but not the sysv emulation layer.
2007-03-20Add three new regexp functions: regexp_matches, regexp_split_to_array,Neil Conway
and regexp_split_to_table. These functions provide access to the capture groups resulting from a POSIX regular expression match, and provide the ability to split a string on a POSIX regular expression, respectively. Patch from Jeremy Drake; code review by Neil Conway, additional comments and suggestions from Tom and Peter E. This patch bumps the catversion, adds some regression tests, and updates the docs.
2007-03-20Bumping catversion due to changes to pg_trigger and pg_rewrite.Jan Wieck
BTW, the comment in this file says that we hope we never have more than 10 catversion changes per day, but to even make this possible we should start counting at zero, shouldn't we? Jan
2007-03-19Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck
rules to be defined with different, per session controllable, behaviors for replication purposes. This will allow replication systems like Slony-I and, as has been stated on pgsql-hackers, other products to control the firing mechanism of triggers and rewrite rules without modifying the system catalog directly. The firing mechanisms are controlled by a new superuser-only GUC variable, session_replication_role, together with a change to pg_trigger.tgenabled and a new column pg_rewrite.ev_enabled. Both columns are a single char data type now (tgenabled was a bool before). The possible values in these attributes are: 'O' - Trigger/Rule fires when session_replication_role is "origin" (default) or "local". This is the default behavior. 'D' - Trigger/Rule is disabled and fires never 'A' - Trigger/Rule fires always regardless of the setting of session_replication_role 'R' - Trigger/Rule fires when session_replication_role is "replica" The GUC variable can only be changed as long as the system does not have any cached query plans. This will prevent changing the session role and accidentally executing stored procedures or functions that have plans cached that expand to the wrong query set due to differences in the rule firing semantics. The SQL syntax for changing a triggers/rules firing semantics is ALTER TABLE <tabname> <when> TRIGGER|RULE <name>; <when> ::= ENABLE | ENABLE ALWAYS | ENABLE REPLICA | DISABLE psql's \d command as well as pg_dump are extended in a backward compatible fashion. Jan
2007-03-19Further buildfarm experience shows that actually we can't run the plancacheTom Lane
test in parallel with the rules test at all, because the former wants to create a couple of temp views, which can sometimes show up in the latter's output. Let's try it in the next parallel group instead.