summaryrefslogtreecommitdiff
path: root/src/backend/catalog
Commit message (Expand)AuthorAgeFilesLines
* Add a new column proiswindow to pg_proc. It doesn't actually do anythingTom Lane2008-12-191-1/+3
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-196-21/+834
* Code review for function default parameters patch. Fix numerous problems asTom Lane2008-12-183-158/+218
* Arrange for the pg_foo_is_visible and has_foo_privilege families of functionsTom Lane2008-12-151-1/+60
* Default values for function argumentsPeter Eisentraut2008-12-043-12/+95
* Introduce visibility map. The visibility map is a bitmap with one bit perHeikki Linnakangas2008-12-032-8/+16
* Make sure we give an appropriate user-facing error when attemptingTom Lane2008-11-291-1/+12
* Fix obsolete comment regarding FSM truncation.Heikki Linnakangas2008-11-271-5/+3
* Drop CLI related features from the list, since we don't track the ODBCPeter Eisentraut2008-11-271-1/+0
* Mark features related to WITH/SELECT as supported.Peter Eisentraut2008-11-271-4/+4
* Feature F442 "Mixed column references in set functions" is supported.Peter Eisentraut2008-11-261-1/+1
* TABLE commandPeter Eisentraut2008-11-201-1/+1
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-194-56/+479
* In CREATE AGGREGATE, allow the transition datatype to be "internal", but onlyTom Lane2008-11-141-5/+18
* Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera2008-11-142-63/+81
* Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane2008-11-131-2/+8
* array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut2008-11-131-1/+1
* Fix a case of string building.Alvaro Herrera2008-11-101-4/+8
* Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane2008-11-092-8/+5
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-0214-147/+147
* Update on array features supportPeter Eisentraut2008-10-291-4/+4
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-291-2/+2
* Add WITH [NO] DATA clause to CREATE TABLE AS, per SQL.Peter Eisentraut2008-10-281-1/+1
* SQL:2008 syntax CURRENT_CATALOG, CURRENT_SCHEMA, SET CATALOG, SET SCHEMA.Peter Eisentraut2008-10-271-2/+2
* Feature list updatePeter Eisentraut2008-10-271-2/+2
* Feature T173 "Extended LIKE clause in table definition" is supportedPeter Eisentraut2008-10-231-1/+1
* Feature T401 is not listed in the SQL standard. Must have been a mistake.Peter Eisentraut2008-10-231-1/+0
* SQL:2008 alternative syntax for LIMIT/OFFSET:Peter Eisentraut2008-10-221-9/+9
* Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPEPeter Eisentraut2008-10-211-1/+1
* Feature T411 is not found in SQL:2003 or 2008 anymore, so it must have beenPeter Eisentraut2008-10-201-1/+0
* Feature T152 "DISTINCT predicate with negation" is supported.Peter Eisentraut2008-10-201-1/+1
* Feature F402 "Named column joins for LOBs, arrays, and multisets" isPeter Eisentraut2008-10-201-1/+1
* AS is no longer required in SELECT listPeter Eisentraut2008-10-201-1/+1
* Fix broken SQL features data, per buildfarm results.Tom Lane2008-10-181-1/+1
* Update feature list for SQL:2008.Peter Eisentraut2008-10-181-12/+145
* Make the system-attributes loop in AddNewAttributeTuples depend onTom Lane2008-10-141-3/+2
* Add a defense to prevent storing pseudo-type data into index columns.Tom Lane2008-10-141-1/+12
* Use fork names instead of numbers in the file names for additionalHeikki Linnakangas2008-10-061-11/+42
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-041-2/+2
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-302-9/+34
* Simplify the definitions of a couple of system views by using SELECT *Tom Lane2008-09-211-10/+5
* Change hash indexes to store only the hash code rather than the whole indexedTom Lane2008-09-151-4/+26
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-091-3/+3
* Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane2008-09-082-6/+17
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-012-4/+4
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-301-2/+14
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-2/+3
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-253-6/+6
* Convert remaining builtin set-returning functions to use OUT parameters, makingMagnus Hagander2008-08-251-15/+5
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-221-2/+2