summaryrefslogtreecommitdiff
path: root/src/backend/catalog
Commit message (Expand)AuthorAgeFilesLines
* Support explicit placement of the temporary-table schema within search_path.Tom Lane2007-04-202-29/+181
* Fixes for RESET SESSION patch, per Alvaro. Fix a typo in the RESETNeil Conway2007-04-121-13/+3
* RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway2007-04-121-1/+21
* Support varlena fields with single-byte headers and unaligned storage.Tom Lane2007-04-061-2/+2
* Check length of enum literals on definition and input to make sure they will ...Andrew Dunstan2007-04-021-1/+14
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-026-41/+183
* Update SQL conformance for SQL to XML mappingsPeter Eisentraut2007-04-011-18/+18
* Add some instrumentation to the bgwriter, through the stats collector.Magnus Hagander2007-03-301-1/+11
* Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane2007-03-291-5/+4
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-271-1/+12
* Allow non-superuser database owners to create procedural languages.Tom Lane2007-03-261-7/+31
* Clean up the representation of special snapshots by including a "methodTom Lane2007-03-252-5/+9
* Fix plancache so that any required replanning is done with the sameTom Lane2007-03-231-105/+270
* Add new columns for tuple statistics on a database level toMagnus Hagander2007-03-161-2/+7
* Fix for COPY-after-truncate feature.Bruce Momjian2007-03-031-1/+2
* Add resetStringInfo(), which clears the content of a StringInfo, andNeil Conway2007-03-031-3/+2
* Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane2007-02-271-2/+2
* Allow information schema definitions to work without requiring implicitPeter Eisentraut2007-02-271-8/+8
* Fix up foreign-key mechanism so that there is a sound semantic basis for theTom Lane2007-02-147-141/+105
* Replace useless uses of := by = in makefiles.Peter Eisentraut2007-02-091-3/+3
* Move NAMEDATALEN definition from postgres_ext.h to pg_config_manual.h. ItPeter Eisentraut2007-02-062-8/+7
* Update SQL conformance information about XML features.Peter Eisentraut2007-02-032-7/+62
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-014-8/+8
* Prevent WAL logging when COPY is done in the same transation thatBruce Momjian2007-01-251-1/+4
* Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane2007-01-231-1/+35
* Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_procTom Lane2007-01-222-4/+10
* Fix incorrect permissions check in information_schema.key_column_usage view:Tom Lane2007-01-161-5/+5
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-092-8/+19
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-0521-42/+42
* Add n_live_tuples and n_dead_tuples to pg_stat_all_tables.Bruce Momjian2007-01-021-2/+4
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-302-2/+32
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-234-106/+280
* Add a txn_start column to pg_stat_activity. This makes it easier toNeil Conway2006-12-061-1/+2
* Change pg_stat_all_tables and sister views to put the recently-addedTom Lane2006-11-241-27/+6
* Message fixPeter Eisentraut2006-11-161-2/+2
* Fix errors in key_column_usage.position_in_unique_constraint column recentlyTom Lane2006-11-101-11/+32
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-051-32/+27
* Clean up local redeclarations of variables with DLLIMPORT, per reportTom Lane2006-10-191-5/+1
* pgindent run for 8.2.Bruce Momjian2006-10-0411-191/+197
* Rename the recently-added pg_timezonenames view to pg_timezone_abbrevs,Tom Lane2006-09-161-5/+6
* Add a couple of information functions to support direct checks on whetherTom Lane2006-09-142-12/+29
* Get rid of the separate RULE privilege for tables: now only a table's ownerTom Lane2006-09-052-13/+4
* Fix information_schema.key_column_usage to show correct value ofTom Lane2006-09-041-5/+12
* Sequences were not being shown due to the use of lowercase 's' insteadBruce Momjian2006-09-041-3/+10
* Clean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSIONTom Lane2006-08-311-6/+6
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-252-19/+398
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-212-100/+120
* Fix DROP OWNED BY to correctly consider the implicitly-deleted objects list forAlvaro Herrera2006-08-202-115/+254
* Add a 'waiting' column to pg_stat_activity to carry the same informationTom Lane2006-08-191-2/+3
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-021-2/+2