aboutsummaryrefslogtreecommitdiff
path: root/src/backend/catalog
Commit message (Expand)AuthorAge
* Fix obsolete comment regarding FSM truncation.Heikki Linnakangas2008-11-27
* Drop CLI related features from the list, since we don't track the ODBCPeter Eisentraut2008-11-27
* Mark features related to WITH/SELECT as supported.Peter Eisentraut2008-11-27
* Feature F442 "Mixed column references in set functions" is supported.Peter Eisentraut2008-11-26
* TABLE commandPeter Eisentraut2008-11-20
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-19
* In CREATE AGGREGATE, allow the transition datatype to be "internal", but onlyTom Lane2008-11-14
* Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera2008-11-14
* Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane2008-11-13
* array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut2008-11-13
* Fix a case of string building.Alvaro Herrera2008-11-10
* Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane2008-11-09
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-02
* Update on array features supportPeter Eisentraut2008-10-29
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-29
* Add WITH [NO] DATA clause to CREATE TABLE AS, per SQL.Peter Eisentraut2008-10-28
* SQL:2008 syntax CURRENT_CATALOG, CURRENT_SCHEMA, SET CATALOG, SET SCHEMA.Peter Eisentraut2008-10-27
* Feature list updatePeter Eisentraut2008-10-27
* Feature T173 "Extended LIKE clause in table definition" is supportedPeter Eisentraut2008-10-23
* Feature T401 is not listed in the SQL standard. Must have been a mistake.Peter Eisentraut2008-10-23
* SQL:2008 alternative syntax for LIMIT/OFFSET:Peter Eisentraut2008-10-22
* Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPEPeter Eisentraut2008-10-21
* Feature T411 is not found in SQL:2003 or 2008 anymore, so it must have beenPeter Eisentraut2008-10-20
* Feature T152 "DISTINCT predicate with negation" is supported.Peter Eisentraut2008-10-20
* Feature F402 "Named column joins for LOBs, arrays, and multisets" isPeter Eisentraut2008-10-20
* AS is no longer required in SELECT listPeter Eisentraut2008-10-20
* Fix broken SQL features data, per buildfarm results.Tom Lane2008-10-18
* Update feature list for SQL:2008.Peter Eisentraut2008-10-18
* Make the system-attributes loop in AddNewAttributeTuples depend onTom Lane2008-10-14
* Add a defense to prevent storing pseudo-type data into index columns.Tom Lane2008-10-14
* Use fork names instead of numbers in the file names for additionalHeikki Linnakangas2008-10-06
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-04
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-30
* Simplify the definitions of a couple of system views by using SELECT *Tom Lane2008-09-21
* Change hash indexes to store only the hash code rather than the whole indexedTom Lane2008-09-15
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-09
* Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane2008-09-08
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-01
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-30
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-28
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25
* Convert remaining builtin set-returning functions to use OUT parameters, makingMagnus Hagander2008-08-25
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-22
* Clean up the loose ends in selectivity estimation left by my patch for semiTom Lane2008-08-16
* Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas2008-08-11
* Fix corner-case bug introduced with HOT: if REINDEX TABLE pg_class (or aTom Lane2008-08-10
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-07
* Tighten up the sanity checks in TypeCreate(): pass-by-value types must haveTom Lane2008-08-03
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* Flip the default typispreferred setting from true to false. This affectsTom Lane2008-07-30