summaryrefslogtreecommitdiff
path: root/src/test
AgeCommit message (Expand)Author
2008-11-20TABLE commandPeter Eisentraut
2008-11-18Add required include to build with cygwin.Magnus Hagander
2008-11-16Modify UPDATE/DELETE WHERE CURRENT OF to use the FOR UPDATE infrastructure toTom Lane
2008-11-15Fix crash of xmlconcat(NULL)Peter Eisentraut
2008-11-15Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane
2008-11-14Implement the basic form of UNNEST, ie unnest(anyarray) returns setofTom Lane
2008-11-13array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut
2008-11-12array_length() function, and for SQL compatibility also cardinality()Peter Eisentraut
2008-11-12Clean up the ancient decision to show only two fractional-seconds digitsTom Lane
2008-11-11Add support for input and output of interval values formatted per ISO 8601;Tom Lane
2008-11-09Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane
2008-11-09Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane
2008-11-05fix suppress_redundant_updates_trigger() where relation has Oids, per gripe f...Andrew Dunstan
2008-11-05A few additional test cases for array functionalityPeter Eisentraut
2008-11-04ADD array_ndims functionPeter Eisentraut
2008-11-04Disallow LOCK TABLE outside a transaction block (or function), since this caseTom Lane
2008-11-03suppress_redundant_updates_trigger function.Andrew Dunstan
2008-11-03Add pg_typeof() function.Tom Lane
2008-10-31Allow SQL-language functions to return the output of an INSERT/UPDATE/DELETETom Lane
2008-10-31Add test case for CREATE CAST.Heikki Linnakangas
2008-10-31Add support for user-defined I/O conversion casts.Heikki Linnakangas
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