summaryrefslogtreecommitdiff
path: root/src/test
AgeCommit message (Expand)Author
2010-01-28Type table featurePeter Eisentraut
2010-01-26Remove the default_do_language parameter, instead making DO use a hardwiredTom Lane
2010-01-25Add get_bit/set_bit functions for bit strings, paralleling those for bytea,Tom Lane
2010-01-21Adjust psql to use pg_get_triggerdef(pretty=true) to remove extra ()'sItagaki Takahiro
2010-01-19Add "USING expressions" option to plpgsql's OPEN cursor FOR EXECUTE.Tom Lane
2010-01-14Add point_ops opclass for GiST.Teodor Sigaev
2010-01-12Please tablespace directories in their own subdirectory so pg_migratorBruce Momjian
2010-01-06Support rewritten-based full vacuum as VACUUM FULL. TraditionalItagaki Takahiro
2010-01-05Add support for doing FULL JOIN ON FALSE. While this is really a ratherTom Lane
2010-01-05Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas
2010-01-02check_exclusion_constraint didn't actually work correctly for indexTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2010-01-01Support "x IS NOT NULL" clauses as indexscan conditions. This turns outTom Lane
2009-12-31enable examples to compile on Windows. patch from Hiroshi Saito.Andrew Dunstan
2009-12-29Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane
2009-12-23Allow the index name to be omitted in CREATE INDEX, causing the system toTom Lane
2009-12-23Always pass catalog id to the options validator function specified inHeikki Linnakangas
2009-12-23Adjust naming of indexes and their columns per recent discussion.Tom Lane
2009-12-22Disallow comments on columns of relation types other than tables, views,Tom Lane
2009-12-19Allow read only connections during recovery, known as Hot Standby.Simon Riggs
2009-12-18Install server-side language PL/pgSQL by default.Bruce Momjian
2009-12-16Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-12-14Fix a bug introduced when set-returning SQL functions were made inline-able:Tom Lane
2009-12-14Additional fixes for large object access control.Itagaki Takahiro
2009-12-11Add large object access control.Itagaki Takahiro
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-12-02thread-safetyBruce Momjian
2009-11-29Add some opr_sanity checks that the lengths of the various argument-infoTom Lane
2009-11-29Make pg_stat_activity.application_name visible to all users, rather thanTom Lane
2009-11-28Add support for an application_name parameter, which is displayed inTom Lane
2009-11-28Eliminate a lot of list-management overhead within join_search_one_levelTom Lane
2009-11-25Simplify psql's new linestyle behavior to default to linestyle=ascii allTom Lane
2009-11-23Use diff's -w switch only on Windows, to avoid problems with inconsistentTom Lane
2009-11-22Adjust expected-results spacing per buildfarm results.Tom Lane
2009-11-22Remove -w (--ignore-all-space) option from pg_regress's diff calls.Tom Lane
2009-11-22Ooops, forgot to check the libxml cases for psql output wrapping change.Tom Lane
2009-11-22Improve psql's tabular display of wrapped-around data by inserting markersTom Lane
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-11-16Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane
2009-11-14Add inheritable ACE when creating a restricted token for execution onMagnus Hagander
2009-11-13Add control knobs for plpgsql's variable resolution behavior, and make theTom Lane
2009-11-12Remove plpgsql's separate lexer (finally!), in favor of using the core lexerTom Lane
2009-11-09Fix WHERE CURRENT OF to work as designed within plpgsql. The argumentTom Lane
2009-11-09Modernize plpgsql's handling of parse locations, making it look a lot moreTom Lane
2009-11-06Change plpgsql from using textual substitution to insert variable referencesTom Lane
2009-11-05Remove plpgsql's RENAME declaration, which has bizarre and mostly nonfunctionalTom Lane
2009-11-04Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane
2009-11-03Fix regression tests for psql \d view patchPeter Eisentraut
2009-10-26Check errors in for loopPeter Eisentraut