summaryrefslogtreecommitdiff
path: root/src/test
AgeCommit message (Expand)Author
2008-08-07Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane
2008-08-07Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane
2008-08-05Add an ORDER BY to one more SELECT DISTINCT test case, per buildfarm results.Tom Lane
2008-08-05Fix some message style guideline violations in pg_regress, as well asTom Lane
2008-08-05Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq,Tom Lane
2008-08-03Fix copy-and-pasteo that's causing pg_regress to lie about which file it can'tTom 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-21Code review for array_fill patch: fix inadequate check for array size overflowTom 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-10Fix mis-calculation of extParam/allParam sets for plan nodes, as seen inTom Lane
2008-07-03Don't refer to the database name "regression" inside the regression testPeter Eisentraut
2008-07-03Don't print the name of the database in psql \z.Peter Eisentraut
2008-07-03Clean up weird whitespace. Separate patch to simplifiy the next change.Peter Eisentraut
2008-06-27Consider a clause to be outerjoin_delayed if it references the nullable sideTom Lane
2008-06-14Refactor the handling of the various DropStmt variants so that when multipleTom Lane
2008-06-11Improve reporting of dependencies in DROP to work like the scheme that weTom Lane
2008-06-09Fix an ALTER TABLE test case so that it actually tests what the comment says itTom Lane
2008-06-08Rewrite DROP's dependency traversal algorithm into an honest two-passTom Lane
2008-05-30Copy refint.so and autoinc.so into the src/test/regress directory duringTom Lane
2008-05-27Alter the xxx_pattern_ops opclasses to use the regular equality operator ofTom Lane
2008-05-25Adjust timestamp regression tests to prevent two low-probability failureTom Lane
2008-05-17Improve pg_regress so that it reports the fact if any test processTom Lane
2008-05-17Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan
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-15Support SQL/PSM-compatible CASE statement in plpgsql.Tom Lane
2008-05-15Add support for tracking call counts and elapsed runtime for user-definedTom Lane
2008-05-13Improve plpgsql's RAISE command. It is now possible to attach DETAIL andTom Lane
2008-05-10Update alternative output regression files for new float8 test of power().Bruce Momjian
2008-05-09Change the rules for inherited CHECK constraints to be essentially the sameTom Lane
2008-05-09Fix bogus expected output that should have made it quite clear thatTom Lane
2008-05-08Add regression test for various power expressions with a zero base, andBruce Momjian
2008-05-08Have psql output tab as the proper number of spaces, rather than \x09.Bruce Momjian
2008-05-08Fix rules regression test for recent pg_stat_activity change.Tom Lane
2008-05-07Make the pg_stat_activity view call a SRF (pg_stat_get_activity())Magnus Hagander
2008-05-05Display ACLS using multiple lines for psql's \z. Brendan Jurd.Andrew Dunstan
2008-05-03Support RETURN QUERY EXECUTE in plpgsql.Tom Lane
2008-04-28Increase the statement_timeout value used in the prepared_xacts regressionTom Lane
2008-04-28Add generate_subscripts, a series-generation function which generates anAlvaro Herrera
2008-04-24Fix ALTER TABLE ADD COLUMN ... PRIMARY KEY so that the new column is correctlyTom Lane
2008-04-21Fix convert_IN_to_join to properly handle the case where the subselect'sTom Lane
2008-04-21Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane
2008-04-10Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane
2008-04-07Implement a few changes to how shared libraries and dynamically loadablePeter Eisentraut