summaryrefslogtreecommitdiff
path: root/src/include/catalog
AgeCommit message (Expand)Author
2008-10-03Add relation fork support to pg_relation_size() function. You can now passHeikki Linnakangas
2008-09-30Forgot to bump catalog version in the commit of FSM rewrite.Heikki Linnakangas
2008-09-25Establish the rule that array types should have the same typdelim as theirTom Lane
2008-09-23Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas
2008-09-19Create a selectivity estimation function for the text search @@ operator.Tom Lane
2008-09-15Change hash indexes to store only the hash code rather than the whole indexedTom Lane
2008-09-10Add "source file" and "source line" information to each GUC variable.Alvaro Herrera
2008-09-08Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane
2008-09-06Implement a psql command "\ef" to edit the definition of a function.Tom Lane
2008-09-01Add a bunch of new error location reports to parse-analysis error messages.Tom Lane
2008-08-28Extend the parser location infrastructure to include a location field inTom Lane
2008-08-25Convert remaining builtin set-returning functions to use OUT parameters, makingMagnus Hagander
2008-08-23Add missing descriptions for aggregates, functions and conversions.Bruce Momjian
2008-08-16Clean up the loose ends in selectivity estimation left by my patch for semiTom Lane
2008-08-11Relation forks patch requires a catversion bump due to changes in the formatHeikki Linnakangas
2008-08-11Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas
2008-08-07Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane
2008-08-05Move pgstat.tmp into a temporary directory under $PGDATA named pg_stat_tmp.Magnus Hagander
2008-08-02Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane
2008-07-30Flip the default typispreferred setting from true to false. This affectsTom Lane
2008-07-30Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane
2008-07-18Implement SQL-spec RETURNS TABLE syntax for functions.Tom Lane
2008-07-16Add a "provariadic" column to pg_proc to eliminate the remarkably expensiveTom Lane
2008-07-16Support "variadic" functions, which can accept a variable number of argumentsTom Lane
2008-07-16Add array_fill() to create arrays initialized with a value.Bruce Momjian
2008-07-14Create a type-specific typanalyze routine for tsvector, which collects statsTom Lane
2008-07-11Multi-column GIN indexes. Teodor SigaevTom Lane
2008-07-03Add a function pg_get_keywords() to let clients find out the set of keywordsTom Lane
2008-07-01Teach autovacuum how to determine whether a temp table belongs to a crashedTom Lane
2008-06-24Reduce the alignment requirement of type "name" from int to char, and arrangeTom Lane
2008-06-19Improve our #include situation by moving pointer types away from theAlvaro Herrera
2008-06-17Clean up some problems with redundant cross-type arithmetic operators. AddTom Lane
2008-06-14Refactor the handling of the various DropStmt variants so that when multipleTom Lane
2008-06-08Rewrite DROP's dependency traversal algorithm into an honest two-passTom Lane
2008-05-29Improve the documentation comment for replace(). Robert TreatTom Lane
2008-05-27Alter the xxx_pattern_ops opclasses to use the regular equality operator ofTom Lane
2008-05-16Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane
2008-05-16Extend GIN to support partial-match searches, and extend tsquery to supportTom Lane
2008-05-15Add support for tracking call counts and elapsed runtime for user-definedTom Lane
2008-05-09Change the rules for inherited CHECK constraints to be essentially the sameTom Lane
2008-05-08Make the new pg_stat_get_activity use OUT parameters, so you don't have toMagnus Hagander
2008-05-07Make the pg_stat_activity view call a SRF (pg_stat_get_activity())Magnus Hagander
2008-05-04Add timestamp and timestamptz versions of generate_series().Tom Lane
2008-05-04Add pg_conf_load_time() function to report when the Postgres configurationTom Lane
2008-04-29Remove typename from A_Const.Alvaro Herrera
2008-04-29Fix volatility marking for the generate_series and generate_subscripts familiesAlvaro Herrera
2008-04-28Bump the catversion for the previous patch.Alvaro Herrera
2008-04-28Add generate_subscripts, a series-generation function which generates anAlvaro Herrera
2008-04-21Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane
2008-04-18Modify the float4 datatype to be pass-by-val. Along the way, remove the lastAlvaro Herrera