summaryrefslogtreecommitdiff
path: root/src/test
AgeCommit message (Expand)Author
2008-10-29Unicode escapes in strings and identifiersPeter Eisentraut
2008-10-21Use format_type_be() instead of TypeNameToString() for some more user-facingPeter Eisentraut
2008-10-17Improve headeline generation. Now headline can containTeodor Sigaev
2008-10-14Extend the date type to support infinity and -infinity, analogously toTom Lane
2008-10-14Add docs and regression test about sorting the output of a recursive query inTom Lane
2008-10-14Eliminate unnecessary array[] decoration in examples of recursive cycleTom Lane
2008-10-13Implement comparison of generic records (composite types), and invent aTom Lane
2008-10-13Update oidjoins test to match CVS HEAD.Tom Lane
2008-10-13Fix corner case wherein a WorkTableScan node could get initialized before theTom Lane
2008-10-07Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane
2008-10-06Add columns boot_val and reset_val to the pg_settings view, to exposeMagnus Hagander
2008-10-06Fix a missed case in int8-exp-three-digits.out, per buildfarm results.Tom Lane
2008-10-05Improve behavior of WITH RECURSIVE with an untyped literal in theTom Lane
2008-10-05Fix markTargetListOrigin() to not fail on a simple-Var reference to aTom Lane
2008-10-05Remove some unportable testsPeter Eisentraut
2008-10-05Reverse int8.out and int8-exp-three-digits.out mixup.Peter Eisentraut
2008-10-05Additional test coverage for int8 type (int8.c)Peter Eisentraut
2008-10-05Additional test coverage for boolean type (bool.c)Peter Eisentraut
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-10-04Additional string function tests for coverage of oracle_compat.cPeter Eisentraut
2008-10-03Add regression test for macaddr type. Enhance documentation about acceptedPeter Eisentraut
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