- Jan 09, 2007
-
-
Tom Lane authored
per-column options for btree indexes. The planner's support for this is still pretty rudimentary; it does not yet know how to plan mergejoins with nondefault ordering options. The documentation is pretty rudimentary, too. I'll work on improving that stuff later. Note incompatible change from prior behavior: ORDER BY ... USING will now be rejected if the operator is not a less-than or greater-than member of some btree opclass. This prevents less-than-sane behavior if an operator that doesn't actually define a proper sort ordering is selected.
-
- Jan 07, 2007
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- Jan 06, 2007
-
-
Bruce Momjian authored
< * %Allow the identifier length to be increased via a configure option
-
Bruce Momjian authored
< * Improve the MONEY data type > * -Make 64-bit version of the MONEY data type > * Add locale-aware MONEY type, and support multiple currencies < Change the MONEY data type to use DECIMAL internally, with special < locale-aware output formatting. < http://archives.postgresql.org/pgsql-hackers/2006-09/msg01107.php
-
Bruce Momjian authored
> * -Allow user-defined types to accept 'typmod' parameters
-
Bruce Momjian authored
> > * Make consistent use of long/short command options --- pg_ctl needs > long ones, pg_config doesn't have short ones, postgres doesn't have > enough long ones, etc.
-
Bruce Momjian authored
> o Consider parsing the -c string into individual queries so each > is run in its own transaction > > o Consider disallowing multiple queries in PQexec() as an > additional barrier to SQL injection attacks
-
Bruce Momjian authored
< * Allow CREATE INDEX to take an additional parameter for use with < special index types
-
Bruce Momjian authored
< * Allow inherited tables to inherit index, UNIQUE constraint, and primary < key, foreign key < * UNIQUE INDEX on base column not honored on INSERTs/UPDATEs from < inherited table: INSERT INTO inherit_table (unique_index_col) VALUES < (dup) should fail < < The main difficulty with this item is the problem of creating an index < that can span more than one table. < < * Allow SELECT ... FOR UPDATE on inherited tables > * Inheritance > > o Allow inherited tables to inherit indexes, UNIQUE constraints, > and primary/foreign keys > o Honor UNIQUE INDEX on base column in INSERTs/UPDATEs > on inherited table, e.g. INSERT INTO inherit_table > (unique_index_col) VALUES (dup) should fail > > The main difficulty with this item is the problem of > creating an index that can span multiple tables. > > o Allow SELECT ... FOR UPDATE on inherited tables > > >
-
Bruce Momjian authored
> * -Allow the pg_xlog directory location to be specified during initdb
-
Bruce Momjian authored
Euler Taveira de Oliveira
-
Bruce Momjian authored
-
- Jan 05, 2007
-
-
Tom Lane authored
-
Bruce Momjian authored
back-stamped for this.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Andrew Dunstan authored
Call setrlimit if possible in pg_regress to allow core file generation, and provide a switch for similar behaviour in pg_ctl.
-
Tom Lane authored
-
- Jan 04, 2007
-
-
Bruce Momjian authored
-
Tom Lane authored
an optarg). Add some comments noting that code in three different files has to be kept in sync. Fix erroneous description of -S switch (it sets work_mem not silent_mode), and do some light copy-editing elsewhere in postgres-ref.
-
- Dec 30, 2006
-
-
Tom Lane authored
about typmod representation for standard types out into type-specific typmod I/O functions. Teodor Sigaev, with some editorialization by Tom Lane.
-
Bruce Momjian authored
-
- Dec 28, 2006
-
-
Bruce Momjian authored
< * Add a GUC to control whether BEGIN inside a transcation should abort < the transaction.
-
Tom Lane authored
for use with constraint exclusion. We can prove those cases now...
-
Bruce Momjian authored
< * Move some /contrib modules out to their own project sites < < Particularly, move GPL-licensed /contrib/userlock and < /contrib/dbmirror/clean_pending.pl. <
- Dec 27, 2006
-
-
Tom Lane authored
remove long-obsolete statement that there isn't a check for infinite recursion in view rules.
-
Bruce Momjian authored
-
- Dec 26, 2006
-
-
Tom Lane authored
-
- Dec 24, 2006
-
-
Tom Lane authored
the XmlExpr code in various lists, use a representation that has some hope of reverse-listing correctly (though it's still a de-escaping function shy of correctness), generally try to make it look more like Postgres coding conventions.
-
- Dec 23, 2006
-
-
Bruce Momjian authored
and UPDATE are clearly covered by the term.
-
Bruce Momjian authored
rather than being disallowed.
-
Tom Lane authored
cases. Operator classes now exist within "operator families". While most families are equivalent to a single class, related classes can be grouped into one family to represent the fact that they are semantically compatible. Cross-type operators are now naturally adjunct parts of a family, without having to wedge them into a particular opclass as we had done originally. This commit restructures the catalogs and cleans up enough of the fallout so that everything still works at least as well as before, but most of the work needed to actually improve the planner's behavior will come later. Also, there are not yet CREATE/DROP/ALTER OPERATOR FAMILY commands; the only way to create a new family right now is to allow CREATE OPERATOR CLASS to make one by default. I owe some more documentation work, too. But that can all be done in smaller pieces once this infrastructure is in place.
-
- Dec 22, 2006
-
-
Bruce Momjian authored
work effectively with open source communities.
-
Bruce Momjian authored
added.
-
- Dec 21, 2006
-
-
Peter Eisentraut authored
-
- Dec 20, 2006
-
-
Bruce Momjian authored
-
- Dec 19, 2006
-
-
Bruce Momjian authored
-