summaryrefslogtreecommitdiff
path: root/src/test
AgeCommit message (Expand)Author
2008-10-01Allow pg_regress to be run outside the build tree. Look for input filesPeter Eisentraut
2008-09-25Establish the rule that array types should have the same typdelim as theirTom Lane
2008-09-16Clean up a couple of weird corner cases in interval parsing: make -yyyy-mm beTom Lane
2008-09-11Tighten up to_date/to_timestamp so that they are more likely to rejectTom Lane
2008-09-11Adjust the parser to accept the typename syntax INTERVAL ... SECOND(n)Tom Lane
2008-09-10Make our parsing of INTERVAL literals spec-compliant (or at least a heck ofTom 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-01Add a variant expected-output file for the sequence regression test, to coverTom 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-16Clean up the loose ends in selectivity estimation left by my patch for semiTom Lane
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